Rename new property

This commit is contained in:
Ben Lichtman
2020-01-07 12:57:11 -08:00
parent 1bc387938a
commit 49f7f2532c
5 changed files with 10 additions and 3 deletions

View File

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

View File

@@ -311,7 +311,7 @@ namespace ts.Completions {
kind: ScriptElementKind.warning,
kindModifiers: "",
sortText: SortText.JavascriptIdentifiers,
isUncheckedCompletion: true
isFromUncheckedFile: true
});
}
});

View File

@@ -988,7 +988,7 @@ namespace ts {
hasAction?: true;
source?: string;
isRecommended?: true;
isUncheckedCompletion?: true;
isFromUncheckedFile?: true;
}
export interface CompletionEntryDetails {