UNPKG

@roots/bud-api

Version:

bud.js core module

11 lines (10 loc) 347 B
import type { Configuration } from '@roots/bud-framework/config'; import { Bud } from '@roots/bud-framework'; export type Parameters = [(Bud | Configuration['devtool'])?]; export interface devtool { (...devtool: Parameters): Promise<Bud>; } export interface facade { (...devtool: Parameters): Bud; } export declare const devtool: devtool;