bpms_site/.svn/pristine/e0/e090e72b45e3802214ad8eb9944ad85e131fa9de.svn-base
2025-11-02 16:38:49 +03:30

16 lines
619 B
Plaintext

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;
}