Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

index.d.ts 376B

12345678910111213141516171819202122232425262728
  1. /**
  2. Import a module while bypassing the cache.
  3. @example
  4. ```
  5. // foo.js
  6. let i = 0;
  7. module.exports = () => ++i;
  8. // index.js
  9. import importFresh = require('import-fresh');
  10. require('./foo')();
  11. //=> 1
  12. require('./foo')();
  13. //=> 2
  14. importFresh('./foo')();
  15. //=> 1
  16. importFresh('./foo')();
  17. //=> 1
  18. ```
  19. */
  20. declare function importFresh(moduleId: string): unknown;
  21. export = importFresh;