Fix API under exactOptionalPropertyTypes (#48505)

This commit is contained in:
Wesley Wigham
2022-03-31 21:45:34 -07:00
committed by GitHub
parent 9153eaaee0
commit 54fa69cb47
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -6613,7 +6613,7 @@ namespace ts {
realpath?(path: string): string;
getCurrentDirectory?(): string;
getDirectories?(path: string): string[];
useCaseSensitiveFileNames?: boolean | (() => boolean);
useCaseSensitiveFileNames?: boolean | (() => boolean) | undefined;
}
/**
+1 -1
View File
@@ -3164,7 +3164,7 @@ declare namespace ts {
realpath?(path: string): string;
getCurrentDirectory?(): string;
getDirectories?(path: string): string[];
useCaseSensitiveFileNames?: boolean | (() => boolean);
useCaseSensitiveFileNames?: boolean | (() => boolean) | undefined;
}
/**
* Used by services to specify the minimum host area required to set up source files under any compilation settings
+1 -1
View File
@@ -3164,7 +3164,7 @@ declare namespace ts {
realpath?(path: string): string;
getCurrentDirectory?(): string;
getDirectories?(path: string): string[];
useCaseSensitiveFileNames?: boolean | (() => boolean);
useCaseSensitiveFileNames?: boolean | (() => boolean) | undefined;
}
/**
* Used by services to specify the minimum host area required to set up source files under any compilation settings