mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-28 04:23:32 +01:00
Remove unused TS extension constants
This commit is contained in:
@@ -6,45 +6,34 @@
|
||||
'use strict';
|
||||
|
||||
export class Kind {
|
||||
public static unknown: string = '';
|
||||
public static keyword: string = 'keyword';
|
||||
public static script: string = 'script';
|
||||
public static module: string = 'module';
|
||||
public static class: string = 'class';
|
||||
public static interface: string = 'interface';
|
||||
public static type: string = 'type';
|
||||
public static enum: string = 'enum';
|
||||
public static variable: string = 'var';
|
||||
public static localVariable: string = 'local var';
|
||||
public static function: string = 'function';
|
||||
public static localFunction: string = 'local function';
|
||||
public static memberFunction: string = 'method';
|
||||
public static memberGetAccessor: string = 'getter';
|
||||
public static memberSetAccessor: string = 'setter';
|
||||
public static memberVariable: string = 'property';
|
||||
public static constructorImplementation: string = 'constructor';
|
||||
public static callSignature: string = 'call';
|
||||
public static indexSignature: string = 'index';
|
||||
public static constructSignature: string = 'construct';
|
||||
public static parameter: string = 'parameter';
|
||||
public static typeParameter: string = 'type parameter';
|
||||
public static primitiveType: string = 'primitive type';
|
||||
public static label: string = 'label';
|
||||
public static alias: string = 'alias';
|
||||
public static const: string = 'const';
|
||||
public static let: string = 'let';
|
||||
public static warning: string = 'warning';
|
||||
public static directory: string = 'directory';
|
||||
public static file: string = 'file';
|
||||
public static unknown = '';
|
||||
public static keyword = 'keyword';
|
||||
public static script = 'script';
|
||||
public static module = 'module';
|
||||
public static class = 'class';
|
||||
public static interface = 'interface';
|
||||
public static type = 'type';
|
||||
public static enum = 'enum';
|
||||
public static variable = 'var';
|
||||
public static localVariable = 'local var';
|
||||
public static function = 'function';
|
||||
public static localFunction = 'local function';
|
||||
public static memberFunction = 'method';
|
||||
public static memberGetAccessor = 'getter';
|
||||
public static memberSetAccessor = 'setter';
|
||||
public static memberVariable = 'property';
|
||||
public static constructorImplementation = 'constructor';
|
||||
public static callSignature = 'call';
|
||||
public static indexSignature = 'index';
|
||||
public static constructSignature = 'construct';
|
||||
public static parameter = 'parameter';
|
||||
public static typeParameter = 'type parameter';
|
||||
public static primitiveType = 'primitive type';
|
||||
public static alias = 'alias';
|
||||
public static const = 'const';
|
||||
public static let = 'let';
|
||||
public static warning = 'warning';
|
||||
public static directory = 'directory';
|
||||
public static file = 'file';
|
||||
public static externalModuleName = 'external module name';
|
||||
}
|
||||
|
||||
export class KindModifier {
|
||||
public static none: string = '';
|
||||
public static staticMember: string = 'public static';
|
||||
public static privateMember: string = 'private';
|
||||
public static protectedMember: string = 'protected';
|
||||
public static exported: string = 'export';
|
||||
public static ambient: string = 'declare';
|
||||
public static static: string = 'static';
|
||||
}
|
||||
Reference in New Issue
Block a user