add InlineHintKind to InlineHint-type

This commit is contained in:
Johannes Rieken
2021-02-09 15:55:51 +01:00
parent 8077bf3251
commit efd5a000c0
10 changed files with 75 additions and 28 deletions

View File

@@ -1303,9 +1303,10 @@ export interface ISignatureHelpContextDto {
export interface IInlineHintDto {
text: string;
range: IRange;
hoverMessage?: string;
kind: modes.InlineHintKind;
whitespaceBefore?: boolean;
whitespaceAfter?: boolean;
hoverMessage?: string;
}
export interface IInlineHintsDto {