UNPKG

@roots/bud-entrypoints

Version:

Webpack tools

28 lines (22 loc) 590 B
// Copyright © Roots Software LLC // Licensed under the MIT license. /** * Bud entrypoints extension * * @see https://bud.js.org * @see https://github.com/roots/bud */ import type {ExtensionApi} from '@roots/bud-framework/extension' import BudEntrypoints from './extension/index.js' declare module '@roots/bud-framework' { interface Bud { entrypoints: ExtensionApi< {emitHtml: boolean; publicPath: string; type: `array` | `object`}, BudEntrypoints > } interface Modules { '@roots/bud-entrypoints': BudEntrypoints } } export default BudEntrypoints