UNPKG

168 BTypeScriptView Raw
1interface BulidOptions {
2 watch: boolean;
3 buildType: string;
4 [props: string]: any;
5}
6export default function (args: BulidOptions): Promise<void>;
7export {};