Skip to content

Commit

Permalink
Restore duplicate comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Hanson committed Dec 1, 2017
1 parent 52a0b4b commit 32ca804
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/services/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -718,8 +718,13 @@ namespace ts {
export interface CompletionEntry {
name: string;
kind: ScriptElementKind;
kindModifiers: string;
kindModifiers: string; // see ScriptElementKindModifier, comma separated
sortText: string;
/**
* An optional span that indicates the text to be replaced by this completion item.
* If present, this span should be used instead of the default one.
* It will be set if the required span differs from the one generated by the default replacement behavior.
*/
replacementSpan?: TextSpan;
hasAction?: true;
source?: string;
Expand Down

0 comments on commit 32ca804

Please sign in to comment.