UNPKG

extension-develop

Version:
18 lines (17 loc) 543 B
import { Compiler } from '@rspack/core'; import { PluginInterface, FilepathList } from '../../../webpack-types'; export declare class CheckManifestFiles { readonly manifestPath: string; readonly includeList?: FilepathList; readonly excludeList?: FilepathList; constructor(options: PluginInterface); extractPaths(value: string | string[] | { light: string; dark: string; } | { light: string; dark: string; }[]): any[]; private handleErrors; apply(compiler: Compiler): void; }