8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52a0b4b commit 32ca804Copy full SHA for 32ca804
src/services/types.ts
@@ -718,8 +718,13 @@ namespace ts {
718
export interface CompletionEntry {
719
name: string;
720
kind: ScriptElementKind;
721
- kindModifiers: string;
+ kindModifiers: string; // see ScriptElementKindModifier, comma separated
722
sortText: string;
723
+ /**
724
+ * An optional span that indicates the text to be replaced by this completion item.
725
+ * If present, this span should be used instead of the default one.
726
+ * It will be set if the required span differs from the one generated by the default replacement behavior.
727
+ */
728
replacementSpan?: TextSpan;
729
hasAction?: true;
730
source?: string;
0 commit comments