font-stylesheet-gathering-plugin.d.ts 566 B

123456789101112131415
  1. import { webpack } from 'next/dist/compiled/webpack/webpack';
  2. import { FontManifest } from '../../../server/font-utils';
  3. export declare class FontStylesheetGatheringPlugin {
  4. compiler?: webpack.Compiler;
  5. gatheredStylesheets: Array<string>;
  6. manifestContent: FontManifest;
  7. isLikeServerless: boolean;
  8. adjustFontFallbacks?: boolean;
  9. constructor({ isLikeServerless, adjustFontFallbacks, }: {
  10. isLikeServerless: boolean;
  11. adjustFontFallbacks?: boolean;
  12. });
  13. private parserHandler;
  14. apply(compiler: webpack.Compiler): void;
  15. }