UNPKG

@roots/bud-extensions

Version:

bud.js core module

15 lines (14 loc) 534 B
import type { Bud } from '@roots/bud-framework'; import { Extension } from '@roots/bud-framework/extension'; import { default as InterpolateHtmlWebpackPlugin, type Options } from './plugin/index.js'; /** * Interpolate html webpack plugin configuration */ declare class BudInterpolateHtmlExtension extends Extension<Options, InterpolateHtmlWebpackPlugin> { /** * {@link Extension.make} */ make(bud: Bud, options: Options): Promise<any>; } export type { Options }; export { BudInterpolateHtmlExtension as default };