slightly more compact dto, no need to send false

This commit is contained in:
Johannes Rieken
2020-01-16 13:02:26 +01:00
parent af832307d8
commit a8f2db516b
2 changed files with 4 additions and 4 deletions

View File

@@ -1007,7 +1007,7 @@ export interface ISuggestDataDto {
[ISuggestDataDtoField.documentation]?: string | IMarkdownString;
[ISuggestDataDtoField.sortText]?: string;
[ISuggestDataDtoField.filterText]?: string;
[ISuggestDataDtoField.preselect]?: boolean;
[ISuggestDataDtoField.preselect]?: true;
[ISuggestDataDtoField.insertText]?: string;
[ISuggestDataDtoField.insertTextRules]?: modes.CompletionItemInsertTextRule;
[ISuggestDataDtoField.range]?: IRange | { insert: IRange, replace: IRange; };
@@ -1023,8 +1023,8 @@ export interface ISuggestResultDto {
x?: number;
a: { insert: IRange, replace: IRange; };
b: ISuggestDataDto[];
c?: boolean;
d?: boolean;
c?: true;
d?: true;
}
export interface ISignatureHelpDto {