- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
16 lines
624 B
TypeScript
16 lines
624 B
TypeScript
import { webpack } from 'next/dist/compiled/webpack/webpack';
|
|
import type { 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;
|
|
}
|