Last change
on this file since bdd6491 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
973 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * Creates a new workspace and an initial Angular application.
|
---|
3 | */
|
---|
4 | export interface Schema {
|
---|
5 | /**
|
---|
6 | * A collection of schematics to use in generating the initial application.
|
---|
7 | */
|
---|
8 | collection?: string;
|
---|
9 | /**
|
---|
10 | * Disable interactive input prompts for options with a default.
|
---|
11 | */
|
---|
12 | defaults?: boolean;
|
---|
13 | /**
|
---|
14 | * Run through and reports activity without writing out results.
|
---|
15 | */
|
---|
16 | dryRun?: boolean;
|
---|
17 | /**
|
---|
18 | * Force 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 | * Enable interactive input prompts.
|
---|
27 | */
|
---|
28 | interactive?: boolean;
|
---|
29 | /**
|
---|
30 | * Add more details to output logging.
|
---|
31 | */
|
---|
32 | verbose?: boolean;
|
---|
33 | }
|
---|
34 | /**
|
---|
35 | * Shows a help message for this command in the console.
|
---|
36 | */
|
---|
37 | export declare type HelpUnion = boolean | HelpEnum;
|
---|
38 | export declare enum HelpEnum {
|
---|
39 | HelpJson = "JSON",
|
---|
40 | Json = "json"
|
---|
41 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.