UNPKG

@roots/bud-extensions

Version:

bud.js core module

16 lines (15 loc) 581 B
import type { Bud } from '@roots/bud-framework'; import type { Options } from '@roots/bud-support/html-webpack-plugin'; import { type ApplyPlugin, Extension } from '@roots/bud-framework/extension'; /** * HTML Webpack plugin configuration */ declare class BudHtmlWebpackPlugin extends Extension<Options, ApplyPlugin> { get interpolatePlugin(): import("../interpolate-html-webpack-plugin/index.js").default; /** * {@link Extension.make} */ make(bud: Bud, options: Options): Promise<any>; } export { BudHtmlWebpackPlugin as default }; export type { Options };