5 lines
186 B
TypeScript
Raw Permalink Normal View History

2025-09-05 14:59:21 +08:00
/**
* Creates a predicate to test storage keys `foo:bar:baz` against configured `ignores` patterns
*/
export declare function makeIgnored(ignores: string[]): (key: string) => boolean;