mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Fix API under exactOptionalPropertyTypes (#48505)
This commit is contained in:
@@ -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
@@ -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
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user