Skip to content

Commit 3031f7b

Browse files
committed
Baseline update
1 parent 69bf73f commit 3031f7b

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9528,12 +9528,12 @@ declare namespace ts {
95289528
*/
95299529
interface UpToDate {
95309530
type: UpToDateStatusType.UpToDate | UpToDateStatusType.UpToDateWithUpstreamTypes;
9531-
newestInputFileTime: Date;
9532-
newestInputFileName: string;
9533-
newestDeclarationFileContentChangedTime: Date;
9534-
newestOutputFileTime: Date;
9535-
newestOutputFileName: string;
9536-
oldestOutputFileName: string;
9531+
newestInputFileTime?: Date;
9532+
newestInputFileName?: string;
9533+
newestDeclarationFileContentChangedTime?: Date;
9534+
newestOutputFileTime?: Date;
9535+
newestOutputFileName?: string;
9536+
oldestOutputFileName?: string;
95379537
}
95389538
/**
95399539
* One or more of the outputs of the project does not exist.

tests/baselines/reference/api/typescript.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4476,12 +4476,12 @@ declare namespace ts {
44764476
*/
44774477
interface UpToDate {
44784478
type: UpToDateStatusType.UpToDate | UpToDateStatusType.UpToDateWithUpstreamTypes;
4479-
newestInputFileTime: Date;
4480-
newestInputFileName: string;
4481-
newestDeclarationFileContentChangedTime: Date;
4482-
newestOutputFileTime: Date;
4483-
newestOutputFileName: string;
4484-
oldestOutputFileName: string;
4479+
newestInputFileTime?: Date;
4480+
newestInputFileName?: string;
4481+
newestDeclarationFileContentChangedTime?: Date;
4482+
newestOutputFileTime?: Date;
4483+
newestOutputFileName?: string;
4484+
oldestOutputFileName?: string;
44854485
}
44864486
/**
44874487
* One or more of the outputs of the project does not exist.

0 commit comments

Comments
 (0)