instance-cache.d.ts 365 B

12345
  1. import type * as webpack from 'webpack';
  2. import type { TSInstance } from './interfaces';
  3. export declare function getTSInstanceFromCache(key: webpack.Compiler, name: string): TSInstance | undefined;
  4. export declare function setTSInstanceInCache(key: webpack.Compiler | undefined, name: string, instance: TSInstance): void;
  5. //# sourceMappingURL=instance-cache.d.ts.map