mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Rename new property
This commit is contained in:
@@ -2090,7 +2090,7 @@ namespace ts.server.protocol {
|
||||
* If true, this completion was generated from traversing the name table of an unchecked JS file,
|
||||
* and therefore may not be accurate.
|
||||
*/
|
||||
isUncheckedCompletion?: true;
|
||||
isFromUncheckedFile?: true;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -311,7 +311,7 @@ namespace ts.Completions {
|
||||
kind: ScriptElementKind.warning,
|
||||
kindModifiers: "",
|
||||
sortText: SortText.JavascriptIdentifiers,
|
||||
isUncheckedCompletion: true
|
||||
isFromUncheckedFile: true
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
@@ -988,7 +988,7 @@ namespace ts {
|
||||
hasAction?: true;
|
||||
source?: string;
|
||||
isRecommended?: true;
|
||||
isUncheckedCompletion?: true;
|
||||
isFromUncheckedFile?: true;
|
||||
}
|
||||
|
||||
export interface CompletionEntryDetails {
|
||||
|
||||
@@ -5652,6 +5652,7 @@ declare namespace ts {
|
||||
hasAction?: true;
|
||||
source?: string;
|
||||
isRecommended?: true;
|
||||
isFromUncheckedFile?: true;
|
||||
}
|
||||
interface CompletionEntryDetails {
|
||||
name: string;
|
||||
@@ -7644,6 +7645,11 @@ declare namespace ts.server.protocol {
|
||||
* Then either that enum/class or a namespace containing it will be the recommended symbol.
|
||||
*/
|
||||
isRecommended?: true;
|
||||
/**
|
||||
* If true, this completion was generated from traversing the name table of an unchecked JS file,
|
||||
* and therefore may not be accurate.
|
||||
*/
|
||||
isFromUncheckedFile?: true;
|
||||
}
|
||||
/**
|
||||
* Additional completion entry details, available on demand
|
||||
|
||||
@@ -5652,6 +5652,7 @@ declare namespace ts {
|
||||
hasAction?: true;
|
||||
source?: string;
|
||||
isRecommended?: true;
|
||||
isFromUncheckedFile?: true;
|
||||
}
|
||||
interface CompletionEntryDetails {
|
||||
name: string;
|
||||
|
||||
Reference in New Issue
Block a user