File tree Expand file tree Collapse file tree
tests/baselines/reference/api Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments