File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export class Context {
88
88
/**
89
89
* Next free symbol id used by [[getSymbolID]].
90
90
*/
91
- private symbolID : number = - 1024 ;
91
+ private symbolID = - 1024 ;
92
92
93
93
/**
94
94
* The pattern that should be used to flag external source files.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export class ReferenceConverter extends ConverterTypeComponent implements TypeNo
13
13
* The priority this converter should be executed with.
14
14
* A higher priority means the converter will be applied earlier.
15
15
*/
16
- priority : number = - 50 ;
16
+ priority = - 50 ;
17
17
18
18
/**
19
19
* Test whether this converter can handle the given TypeScript node.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export class TypeParameterConverter extends ConverterTypeComponent implements Ty
11
11
* The priority this converter should be executed with.
12
12
* A higher priority means the converter will be applied earlier.
13
13
*/
14
- priority : number = - 50 ;
14
+ priority = - 50 ;
15
15
16
16
/**
17
17
* Test whether this converter can handle the given TypeScript node.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export class UnknownConverter extends ConverterTypeComponent implements TypeType
10
10
* The priority this converter should be executed with.
11
11
* A higher priority means the converter will be applied earlier.
12
12
*/
13
- priority : number = - 100 ;
13
+ priority = - 100 ;
14
14
15
15
/**
16
16
* Test whether this converter can handle the given TypeScript type.
Original file line number Diff line number Diff line change @@ -45,12 +45,12 @@ export class ReferenceType extends Type {
45
45
/**
46
46
* Special symbol ID noting that the reference of a ReferenceType was known when creating the type.
47
47
*/
48
- static SYMBOL_ID_RESOLVED : number = - 1 ;
48
+ static SYMBOL_ID_RESOLVED = - 1 ;
49
49
50
50
/**
51
51
* Special symbol ID noting that the reference should be resolved by the type name.
52
52
*/
53
- static SYMBOL_ID_RESOLVE_BY_NAME : number = - 2 ;
53
+ static SYMBOL_ID_RESOLVE_BY_NAME = - 2 ;
54
54
55
55
/**
56
56
* Create a new instance of ReferenceType.
You can’t perform that action at this time.
0 commit comments