next-csrf
Version:
CSRF mitigation library for Next.js
10 lines (9 loc) • 326 B
TypeScript
import { Compiler } from 'webpack';
import { FontManifest } from '../../../next-server/server/font-utils';
export declare class FontStylesheetGatheringPlugin {
compiler?: Compiler;
gatheredStylesheets: Array<string>;
manifestContent: FontManifest;
private parserHandler;
apply(compiler: Compiler): void;
}