cacheRequire.d.ts 169 B

12345678
  1. declare function cacheRequire(options?: {
  2. dir?: string;
  3. requirePath?: boolean;
  4. code?: boolean;
  5. compileCache?: boolean;
  6. }): void;
  7. export = cacheRequire;