Files
Webklar.com/node_modules/next/dist/build/webpack/plugins/font-stylesheet-gathering-plugin.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

16 lines
619 B
TypeScript

import { webpack } from 'next/dist/compiled/webpack/webpack';
import { FontManifest } from '../../../server/font-utils';
export declare class FontStylesheetGatheringPlugin {
compiler?: webpack.Compiler;
gatheredStylesheets: Array<string>;
manifestContent: FontManifest;
adjustFontFallbacks?: boolean;
adjustFontFallbacksWithSizeAdjust?: boolean;
constructor({ adjustFontFallbacks, adjustFontFallbacksWithSizeAdjust, }: {
adjustFontFallbacks?: boolean;
adjustFontFallbacksWithSizeAdjust?: boolean;
});
private parserHandler;
apply(compiler: webpack.Compiler): void;
}