Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
735 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * Generates a new, generic enum definition for the given or default project.
|
---|
3 | */
|
---|
4 | export interface Schema {
|
---|
5 | /**
|
---|
6 | * Apply lint fixes after generating the enum.
|
---|
7 | * @deprecated Use "ng lint --fix" directly instead.
|
---|
8 | */
|
---|
9 | lintFix?: boolean;
|
---|
10 | /**
|
---|
11 | * The name of the enum.
|
---|
12 | */
|
---|
13 | name: string;
|
---|
14 | /**
|
---|
15 | * The path at which to create the enum definition, relative to the current workspace.
|
---|
16 | */
|
---|
17 | path?: string;
|
---|
18 | /**
|
---|
19 | * The name of the project in which to create the enum. Default is the configured default
|
---|
20 | * project for the workspace.
|
---|
21 | */
|
---|
22 | project?: string;
|
---|
23 | /**
|
---|
24 | * Adds a developer-defined type to the filename, in the format "name.type.ts".
|
---|
25 | */
|
---|
26 | type?: string;
|
---|
27 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.