UNPKG

713 BTypeScriptView Raw
1/**
2 * Runs an Architect target with an optional custom builder configuration defined in your
3 * project.
4 */
5export interface Schema {
6 /**
7 * A named builder configuration, defined in the "configurations" section of angular.json.
8 * The builder uses the named configuration to run the given target.
9 */
10 configuration?: string;
11 /**
12 * Shows a help message for this command in the console.
13 */
14 help?: HelpUnion;
15 /**
16 * The Architect target to run.
17 */
18 target?: string;
19}
20/**
21 * Shows a help message for this command in the console.
22 */
23export declare type HelpUnion = boolean | HelpEnum;
24export declare enum HelpEnum {
25 HelpJson = "JSON",
26 Json = "json"
27}