@uiw-admin/plugins
Version:
24 lines (23 loc) • 668 B
TypeScript
import webpack from 'webpack';
import { ModelType } from './../utils/interface';
export type { ModelType };
declare class RematchWebpackPlugin {
oldModel: ModelType[];
deleteModel: string[];
field: string;
src: string;
uiw: string;
lazyLoad: boolean;
newPath: string;
isTS: boolean;
constructor(props?: {
lazyLoad?: boolean;
});
getPathDeep: (filePath: string) => void;
restCreate: () => void;
deleteField: (newPath: string) => void;
existenceField: (newPath: string) => void;
checkField: (newPath: string) => void;
apply(compiler: webpack.Compiler): void;
}
export default RematchWebpackPlugin;