import { SkuWebpackPluginOptions } from "./services/webpack/config/plugins/validateOptions.mjs"; import { Compiler, WebpackPluginInstance } from "webpack"; //#region src/services/webpack/config/plugins/skuWebpackPlugin.d.ts declare class SkuWebpackPlugin implements WebpackPluginInstance { options: SkuWebpackPluginOptions; compilePackages: string[]; include: string[]; constructor(options: SkuWebpackPluginOptions); apply(compiler: Compiler): void; } //#endregion export { SkuWebpackPlugin, SkuWebpackPlugin as default };