securityos/node_modules/next/dist/build/webpack/plugins/copy-file-plugin.d.ts

16 lines
415 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
import { webpack } from 'next/dist/compiled/webpack/webpack';
export declare class CopyFilePlugin {
private filePath;
private name;
private cacheKey;
private info?;
constructor({ filePath, cacheKey, name, info, }: {
filePath: string;
cacheKey: string;
name: string;
minimize: boolean;
info?: object;
});
apply(compiler: webpack.Compiler): void;
}