UNPKG

@roots/bud-api

Version:

bud.js core module

8 lines (7 loc) 302 B
import type { Bud } from '@roots/bud-framework'; import type { WatchOptions } from '@roots/bud-support/chokidar'; export type Parameters = [Array<string> | string, WatchOptions?] | [WatchOptions]; export interface watch { (...params: Parameters): Promise<Bud>; } export declare const watch: watch;