UNPKG

558 BTypeScriptView Raw
1/**
2 * Runs linting tools on Angular app code in a given project folder.
3 */
4export interface Schema {
5 /**
6 * The linting configuration to use.
7 */
8 configuration?: string;
9 /**
10 * Shows a help message for this command in the console.
11 */
12 help?: HelpUnion;
13 /**
14 * The name of the project to lint.
15 */
16 project?: string;
17}
18/**
19 * Shows a help message for this command in the console.
20 */
21export declare type HelpUnion = boolean | HelpEnum;
22export declare enum HelpEnum {
23 HelpJson = "JSON",
24 Json = "json"
25}