UNPKG

@roots/bud-api

Version:

bud.js core module

14 lines (13 loc) 372 B
import type { Api as BudApi } from '@roots/bud-framework'; import type { Bud } from '@roots/bud-framework'; import { Service } from '@roots/bud-framework/service'; /** * Bud.API {@link Service} */ declare class Api extends Service implements BudApi { /** * {@link Service.bootstrap} */ bootstrap?(bud: Bud): Promise<void>; } export { Api as default };