mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 08:11:30 -06:00
Fix API under exactOptionalPropertyTypes (#48505)
This commit is contained in:
parent
9153eaaee0
commit
54fa69cb47
@ -6613,7 +6613,7 @@ namespace ts {
|
||||
realpath?(path: string): string;
|
||||
getCurrentDirectory?(): string;
|
||||
getDirectories?(path: string): string[];
|
||||
useCaseSensitiveFileNames?: boolean | (() => boolean);
|
||||
useCaseSensitiveFileNames?: boolean | (() => boolean) | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user