UNPKG

337 BTypeScriptView Raw
1export interface IWebpackPrerender {
2 templatePath: string;
3 configPath: string;
4 appPath: string;
5}
6export declare class PrerenderWebpackPlugin {
7 private options;
8 private bootloader;
9 private cachedTemplate;
10 constructor(options: IWebpackPrerender);
11 apply(compiler: any): void;
12 decacheAppFiles(): void;
13}