1 |
3a515b92
|
cagy
|
interface Entry {
|
2 |
|
|
[key: string]: any;
|
3 |
|
|
}
|
4 |
|
|
interface 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 |
|
|
*/
|
12 |
|
|
export default 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 |
|
|
*/
|
19 |
|
|
export default function mapAgeCleaner<K = any, V = Entry>(map: Map<K, V>, property: string): any;
|
20 |
|
|
export {};
|