File tree 3 files changed +3
-3
lines changed
tests/baselines/reference/api
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6613,7 +6613,7 @@ namespace ts {
6613
6613
realpath ?( path : string ) : string ;
6614
6614
getCurrentDirectory ?( ) : string ;
6615
6615
getDirectories ?( path : string ) : string [ ] ;
6616
- useCaseSensitiveFileNames ?: boolean | ( ( ) => boolean ) ;
6616
+ useCaseSensitiveFileNames ?: boolean | ( ( ) => boolean ) | undefined ;
6617
6617
}
6618
6618
6619
6619
/**
Original file line number Diff line number Diff line change @@ -3164,7 +3164,7 @@ declare namespace ts {
3164
3164
realpath?(path: string): string;
3165
3165
getCurrentDirectory?(): string;
3166
3166
getDirectories?(path: string): string[];
3167
- useCaseSensitiveFileNames?: boolean | (() => boolean);
3167
+ useCaseSensitiveFileNames?: boolean | (() => boolean) | undefined ;
3168
3168
}
3169
3169
/**
3170
3170
* Used by services to specify the minimum host area required to set up source files under any compilation settings
Original file line number Diff line number Diff line change @@ -3164,7 +3164,7 @@ declare namespace ts {
3164
3164
realpath ?( path : string ) : string ;
3165
3165
getCurrentDirectory ?( ) : string ;
3166
3166
getDirectories ?( path : string ) : string [ ] ;
3167
- useCaseSensitiveFileNames ?: boolean | ( ( ) => boolean ) ;
3167
+ useCaseSensitiveFileNames ?: boolean | ( ( ) => boolean ) | undefined ;
3168
3168
}
3169
3169
/**
3170
3170
* Used by services to specify the minimum host area required to set up source files under any compilation settings
You can’t perform that action at this time.
0 commit comments