UNPKG

1.02 kBTypeScriptView Raw
1/**
2 * Creates a new workspace and an initial Angular app.
3 */
4export interface Schema {
5 /**
6 * A collection of schematics to use in generating the initial app.
7 */
8 collection?: string;
9 /**
10 * When true, disables interactive input prompts for options with a default.
11 */
12 defaults?: boolean;
13 /**
14 * When true, runs through and reports activity without writing out results.
15 */
16 dryRun?: boolean;
17 /**
18 * When true, forces overwriting of existing files.
19 */
20 force?: boolean;
21 /**
22 * Shows a help message for this command in the console.
23 */
24 help?: HelpUnion;
25 /**
26 * When false, disables interactive input prompts.
27 */
28 interactive?: boolean;
29 /**
30 * When true, adds more details to output logging.
31 */
32 verbose?: boolean;
33}
34/**
35 * Shows a help message for this command in the console.
36 */
37export declare type HelpUnion = boolean | HelpEnum;
38export declare enum HelpEnum {
39 HelpJson = "JSON",
40 Json = "json"
41}