5 lines
186 B
TypeScript
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;
|