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

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/import-fresh/index.d.ts')
-rw-r--r--assets/node_modules/import-fresh/index.d.ts28
1 files changed, 0 insertions, 28 deletions
diff --git a/assets/node_modules/import-fresh/index.d.ts b/assets/node_modules/import-fresh/index.d.ts
deleted file mode 100644
index 708737b..0000000
--- a/assets/node_modules/import-fresh/index.d.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
-Import a module while bypassing the cache.
-
-@example
-```
-// foo.js
-let i = 0;
-module.exports = () => ++i;
-
-// index.js
-import importFresh = require('import-fresh');
-
-require('./foo')();
-//=> 1
-
-require('./foo')();
-//=> 2
-
-importFresh('./foo')();
-//=> 1
-
-importFresh('./foo')();
-//=> 1
-```
-*/
-declare function importFresh(moduleId: string): unknown;
-
-export = importFresh;