Files
old-kitabcitab-frontend/kitabcitab/node_modules/next/dist/build/webpack/plugins/font-loader-manifest-plugin.d.ts
2022-12-27 12:05:56 +01:00

19 lines
480 B
TypeScript

import { webpack } from 'next/dist/compiled/webpack/webpack';
export declare type FontLoaderManifest = {
pages: {
[path: string]: string[];
};
app: {
[moduleRequest: string]: string[];
};
};
export declare class FontLoaderManifestPlugin {
private appDirEnabled;
private fontLoaderTargets;
constructor(options: {
appDirEnabled: boolean;
fontLoaderTargets: string[];
});
apply(compiler: webpack.Compiler): void;
}