Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/map-age-cleaner/dist/index.d.ts')
-rw-r--r--node_modules/map-age-cleaner/dist/index.d.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/node_modules/map-age-cleaner/dist/index.d.ts b/node_modules/map-age-cleaner/dist/index.d.ts
deleted file mode 100644
index fbf5ce08f..000000000
--- a/node_modules/map-age-cleaner/dist/index.d.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-interface Entry {
- [key: string]: any;
-}
-interface MaxAgeEntry extends Entry {
- maxAge: number;
-}
-/**
- * Automatically cleanup the items in the provided `map`. The property of the expiration timestamp should be named `maxAge`.
- *
- * @param map - Map instance which should be cleaned up.
- */
-export default function mapAgeCleaner<K = any, V extends MaxAgeEntry = MaxAgeEntry>(map: Map<K, V>): any;
-/**
- * Automatically cleanup the items in the provided `map`.
- *
- * @param map - Map instance which should be cleaned up.
- * @param property - Name of the property which olds the expiry timestamp.
- */
-export default function mapAgeCleaner<K = any, V = Entry>(map: Map<K, V>, property: string): any;
-export {};