blob: 8195548e95d3e11636899ed59d40b870a9ff9323 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/**
* Configures the gathering of Angular CLI usage metrics. See
* https://angular.io/cli/usage-analytics-gathering.
*/
export interface Schema {
/**
* Shows a help message for this command in the console.
*/
help?: HelpUnion;
/**
* Sets the default analytics enablement status for the project.
*/
projectSetting?: ProjectSetting;
/**
* Directly enables or disables all usage analytics for the user, or prompts the user to set
* the status interactively, or sets the default status for the project.
*/
settingOrProject: SettingOrProject;
}
/**
* Shows a help message for this command in the console.
*/
export declare type HelpUnion = boolean | HelpEnum;
export declare enum HelpEnum {
HelpJson = "JSON",
Json = "json"
}
/**
* Sets the default analytics enablement status for the project.
*/
export declare enum ProjectSetting {
Off = "off",
On = "on",
Prompt = "prompt"
}
/**
* Directly enables or disables all usage analytics for the user, or prompts the user to set
* the status interactively, or sets the default status for the project.
*/
export declare enum SettingOrProject {
Ci = "ci",
Off = "off",
On = "on",
Project = "project",
Prompt = "prompt"
}
|