Skip to content

Commit 6bcb6bb

Browse files
authored
Simplify expression type to fix build break (#41942)
1 parent ee1f262 commit 6bcb6bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/testRunner/unittests/tsbuild/outFile.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ namespace ts {
465465
}
466466

467467
function stripInternalScenario(fs: vfs.FileSystem, removeCommentsDisabled?: boolean, jsDocStyle?: boolean) {
468-
const internal = jsDocStyle ? `/**@internal*/` : `/*@internal*/`;
468+
const internal: string = jsDocStyle ? `/**@internal*/` : `/*@internal*/`;
469469
if (removeCommentsDisabled) {
470470
diableRemoveCommentsInAll(fs);
471471
}

0 commit comments

Comments
 (0)