resolver.d.ts 331 B

1234567
  1. import type * as webpack from 'webpack';
  2. export declare function makeResolver(_options: webpack.WebpackOptionsNormalized): ResolveSync;
  3. export type ResolveSync = {
  4. (context: any, path: string, moduleName: string): string | false;
  5. (path: string, moduleName: string): string | false;
  6. };
  7. //# sourceMappingURL=resolver.d.ts.map