UNPKG

712 BTypeScriptView Raw
1interface Entry {
2 [key: string]: any;
3}
4interface MaxAgeEntry extends Entry {
5 maxAge: number;
6}
7/**
8 * Automatically cleanup the items in the provided `map`. The property of the expiration timestamp should be named `maxAge`.
9 *
10 * @param map - Map instance which should be cleaned up.
11 */
12declare function mapAgeCleaner<K = any, V extends MaxAgeEntry = MaxAgeEntry>(map: Map<K, V>): any;
13/**
14 * Automatically cleanup the items in the provided `map`.
15 *
16 * @param map - Map instance which should be cleaned up.
17 * @param property - Name of the property which olds the expiry timestamp.
18 */
19declare function mapAgeCleaner<K = any, V = Entry>(map: Map<K, V>, property: string): any;
20export = mapAgeCleaner;