File tree Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -142,14 +142,6 @@ export enum CommandScope {
142
142
Default = InProject ,
143
143
}
144
144
145
- export enum CommandType {
146
- Custom = 'custom' ,
147
- Architect = 'architect' ,
148
- Schematic = 'schematics' ,
149
-
150
- Default = Custom ,
151
- }
152
-
153
145
/**
154
146
* A description of a command, its metadata.
155
147
*/
@@ -190,11 +182,6 @@ export interface CommandDescription {
190
182
*/
191
183
scope : CommandScope ;
192
184
193
- /**
194
- * Type of command.
195
- */
196
- type : CommandType ;
197
-
198
185
/**
199
186
* Whether this command should be hidden from a list of all commands.
200
187
*/
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import {
13
13
CommandConstructor ,
14
14
CommandDescription ,
15
15
CommandScope ,
16
- CommandType ,
17
16
Option ,
18
17
OptionType ,
19
18
} from '../models/interface' ;
@@ -90,7 +89,6 @@ export async function parseJsonSchemaToCommandDescription(
90
89
...( longDescription ? { longDescription } : { } ) ,
91
90
...( usageNotes ? { usageNotes } : { } ) ,
92
91
hidden,
93
- type,
94
92
options,
95
93
aliases,
96
94
scope,
You can’t perform that action at this time.
0 commit comments