UNPKG

730 BTypeScriptView Raw
1import { IModule } from '../common';
2export declare const name = "build";
3export declare const description = "Builds and syncs all typescript modules in order.";
4export declare const args: {
5 '-i': string;
6 '-w': string;
7 '-v': string;
8};
9export declare function cmd(args?: {
10 params: string[];
11 options: {
12 i?: boolean;
13 w?: boolean;
14 v?: boolean;
15 };
16}): Promise<void>;
17export declare function build(options?: {
18 includeIgnored?: boolean;
19 watch?: boolean;
20 verbose?: boolean;
21}): Promise<void>;
22export declare function buildOnce(modules: IModule[]): Promise<void>;
23export declare function buildWatch(modules: IModule[], includeIgnored: boolean, verbose: boolean): Promise<void>;