next
Version:
The React Framework
14 lines (13 loc) • 482 B
TypeScript
import { webpack } from 'next/dist/compiled/webpack/webpack';
import { FontManifest } from '../../../next-server/server/font-utils';
export declare class FontStylesheetGatheringPlugin {
compiler?: webpack.Compiler;
gatheredStylesheets: Array<string>;
manifestContent: FontManifest;
isLikeServerless: boolean;
constructor({ isLikeServerless }: {
isLikeServerless: boolean;
});
private parserHandler;
apply(compiler: webpack.Compiler): void;
}