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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

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;
}
/**

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

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