copy-file-plugin.d.ts 415 B

123456789101112131415
  1. import { webpack } from 'next/dist/compiled/webpack/webpack';
  2. export declare class CopyFilePlugin {
  3. private filePath;
  4. private name;
  5. private cacheKey;
  6. private info?;
  7. constructor({ filePath, cacheKey, name, info, }: {
  8. filePath: string;
  9. cacheKey: string;
  10. name: string;
  11. minimize: boolean;
  12. info?: object;
  13. });
  14. apply(compiler: webpack.Compiler): void;
  15. }