2025-09-05 14:59:21 +08:00

5 lines
186 B
TypeScript

/**
* Creates a predicate to test storage keys `foo:bar:baz` against configured `ignores` patterns
*/
export declare function makeIgnored(ignores: string[]): (key: string) => boolean;