Skip to content

Commit 2e73d45

Browse files
author
Yui T
committed
Update API baselines
1 parent 6cbc8de commit 2e73d45

8 files changed

+32
-0
lines changed

tests/baselines/reference/APISample_compile.js

+2
Original file line numberDiff line numberDiff line change
@@ -1186,6 +1186,7 @@ declare module "typescript" {
11861186
target?: ScriptTarget;
11871187
version?: boolean;
11881188
watch?: boolean;
1189+
stripInternal?: boolean;
11891190
[option: string]: string | number | boolean;
11901191
}
11911192
const enum ModuleKind {
@@ -1216,6 +1217,7 @@ declare module "typescript" {
12161217
description?: DiagnosticMessage;
12171218
paramType?: DiagnosticMessage;
12181219
error?: DiagnosticMessage;
1220+
experimental?: boolean;
12191221
}
12201222
const enum CharacterCodes {
12211223
nullCharacter = 0,

tests/baselines/reference/APISample_compile.types

+6
Original file line numberDiff line numberDiff line change
@@ -3818,6 +3818,9 @@ declare module "typescript" {
38183818
watch?: boolean;
38193819
>watch : boolean
38203820

3821+
stripInternal?: boolean;
3822+
>stripInternal : boolean
3823+
38213824
[option: string]: string | number | boolean;
38223825
>option : string
38233826
}
@@ -3898,6 +3901,9 @@ declare module "typescript" {
38983901
error?: DiagnosticMessage;
38993902
>error : DiagnosticMessage
39003903
>DiagnosticMessage : DiagnosticMessage
3904+
3905+
experimental?: boolean;
3906+
>experimental : boolean
39013907
}
39023908
const enum CharacterCodes {
39033909
>CharacterCodes : CharacterCodes

tests/baselines/reference/APISample_linter.js

+2
Original file line numberDiff line numberDiff line change
@@ -1215,6 +1215,7 @@ declare module "typescript" {
12151215
target?: ScriptTarget;
12161216
version?: boolean;
12171217
watch?: boolean;
1218+
stripInternal?: boolean;
12181219
[option: string]: string | number | boolean;
12191220
}
12201221
const enum ModuleKind {
@@ -1245,6 +1246,7 @@ declare module "typescript" {
12451246
description?: DiagnosticMessage;
12461247
paramType?: DiagnosticMessage;
12471248
error?: DiagnosticMessage;
1249+
experimental?: boolean;
12481250
}
12491251
const enum CharacterCodes {
12501252
nullCharacter = 0,

tests/baselines/reference/APISample_linter.types

+6
Original file line numberDiff line numberDiff line change
@@ -3948,6 +3948,9 @@ declare module "typescript" {
39483948
watch?: boolean;
39493949
>watch : boolean
39503950

3951+
stripInternal?: boolean;
3952+
>stripInternal : boolean
3953+
39513954
[option: string]: string | number | boolean;
39523955
>option : string
39533956
}
@@ -4028,6 +4031,9 @@ declare module "typescript" {
40284031
error?: DiagnosticMessage;
40294032
>error : DiagnosticMessage
40304033
>DiagnosticMessage : DiagnosticMessage
4034+
4035+
experimental?: boolean;
4036+
>experimental : boolean
40314037
}
40324038
const enum CharacterCodes {
40334039
>CharacterCodes : CharacterCodes

tests/baselines/reference/APISample_transform.js

+2
Original file line numberDiff line numberDiff line change
@@ -1216,6 +1216,7 @@ declare module "typescript" {
12161216
target?: ScriptTarget;
12171217
version?: boolean;
12181218
watch?: boolean;
1219+
stripInternal?: boolean;
12191220
[option: string]: string | number | boolean;
12201221
}
12211222
const enum ModuleKind {
@@ -1246,6 +1247,7 @@ declare module "typescript" {
12461247
description?: DiagnosticMessage;
12471248
paramType?: DiagnosticMessage;
12481249
error?: DiagnosticMessage;
1250+
experimental?: boolean;
12491251
}
12501252
const enum CharacterCodes {
12511253
nullCharacter = 0,

tests/baselines/reference/APISample_transform.types

+6
Original file line numberDiff line numberDiff line change
@@ -3896,6 +3896,9 @@ declare module "typescript" {
38963896
watch?: boolean;
38973897
>watch : boolean
38983898

3899+
stripInternal?: boolean;
3900+
>stripInternal : boolean
3901+
38993902
[option: string]: string | number | boolean;
39003903
>option : string
39013904
}
@@ -3976,6 +3979,9 @@ declare module "typescript" {
39763979
error?: DiagnosticMessage;
39773980
>error : DiagnosticMessage
39783981
>DiagnosticMessage : DiagnosticMessage
3982+
3983+
experimental?: boolean;
3984+
>experimental : boolean
39793985
}
39803986
const enum CharacterCodes {
39813987
>CharacterCodes : CharacterCodes

tests/baselines/reference/APISample_watcher.js

+2
Original file line numberDiff line numberDiff line change
@@ -1253,6 +1253,7 @@ declare module "typescript" {
12531253
target?: ScriptTarget;
12541254
version?: boolean;
12551255
watch?: boolean;
1256+
stripInternal?: boolean;
12561257
[option: string]: string | number | boolean;
12571258
}
12581259
const enum ModuleKind {
@@ -1283,6 +1284,7 @@ declare module "typescript" {
12831284
description?: DiagnosticMessage;
12841285
paramType?: DiagnosticMessage;
12851286
error?: DiagnosticMessage;
1287+
experimental?: boolean;
12861288
}
12871289
const enum CharacterCodes {
12881290
nullCharacter = 0,

tests/baselines/reference/APISample_watcher.types

+6
Original file line numberDiff line numberDiff line change
@@ -4074,6 +4074,9 @@ declare module "typescript" {
40744074
watch?: boolean;
40754075
>watch : boolean
40764076

4077+
stripInternal?: boolean;
4078+
>stripInternal : boolean
4079+
40774080
[option: string]: string | number | boolean;
40784081
>option : string
40794082
}
@@ -4154,6 +4157,9 @@ declare module "typescript" {
41544157
error?: DiagnosticMessage;
41554158
>error : DiagnosticMessage
41564159
>DiagnosticMessage : DiagnosticMessage
4160+
4161+
experimental?: boolean;
4162+
>experimental : boolean
41574163
}
41584164
const enum CharacterCodes {
41594165
>CharacterCodes : CharacterCodes

0 commit comments

Comments
 (0)