UNPKG

build-easy

Version:
13 lines (12 loc) 469 B
import type { BuildConfig } from './types'; /** * @param {{ cwd: string; watch?: boolean; userConfig?: BuildConfig }} options - Node api startup parameters. * @param {string} options.cwd - Root directory. * @param {boolean} options.watch - Whether to enable monitoring. * @param {BuildConfig} options.userConfig - User configuration */ export declare function build(options: { cwd: string; watch?: boolean; userConfig?: BuildConfig; }): Promise<void>;