mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-17 12:19:32 -05:00
Bump version to 4.0.0-beta and LKG
This commit is contained in:
10
lib/protocol.d.ts
vendored
10
lib/protocol.d.ts
vendored
@@ -156,6 +156,10 @@ declare namespace ts.server.protocol {
|
||||
* Time spent updating the program graph, in milliseconds.
|
||||
*/
|
||||
updateGraphDurationMs?: number;
|
||||
/**
|
||||
* The time spent creating or updating the auto-import program, in milliseconds.
|
||||
*/
|
||||
createAutoImportProviderProgramDurationMs?: number;
|
||||
}
|
||||
/**
|
||||
* Arguments for FileRequest messages.
|
||||
@@ -1597,6 +1601,11 @@ declare namespace ts.server.protocol {
|
||||
* and therefore may not be accurate.
|
||||
*/
|
||||
isFromUncheckedFile?: true;
|
||||
/**
|
||||
* If true, this completion was for an auto-import of a module not yet in the program, but listed
|
||||
* in the project package.json.
|
||||
*/
|
||||
isPackageJsonImport?: true;
|
||||
}
|
||||
/**
|
||||
* Additional completion entry details, available on demand
|
||||
@@ -2445,6 +2454,7 @@ declare namespace ts.server.protocol {
|
||||
readonly lazyConfiguredProjectsFromExternalProject?: boolean;
|
||||
readonly providePrefixAndSuffixTextForRename?: boolean;
|
||||
readonly allowRenameOfImportPath?: boolean;
|
||||
readonly includePackageJsonAutoImports?: "exclude-dev" | "all" | "none";
|
||||
}
|
||||
interface CompilerOptions {
|
||||
allowJs?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user