UNPKG

@devup-ui/webpack-plugin

Version:

Zero Config, Zero FOUC, Zero Runtime, CSS in JS Preprocessor

17 lines 569 B
import { Compiler } from 'webpack'; export interface DevupUIWebpackPluginOptions { package: string; cssFile: string; devupPath: string; interfacePath: string; watch: boolean; debug: boolean; include: string[]; } export declare class DevupUIWebpackPlugin { options: DevupUIWebpackPluginOptions; constructor({ package: libPackage, devupPath, interfacePath, cssFile, watch, debug, include, }?: Partial<DevupUIWebpackPluginOptions>); writeDataFiles(): void; apply(compiler: Compiler): void; } //# sourceMappingURL=plugin.d.ts.map