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 966e697 commit 063e3acCopy full SHA for 063e3ac
src/services/services.ts
@@ -972,7 +972,7 @@ module ts {
972
973
export interface SymbolDisplayPart {
974
text: string;
975
- kind: SymbolDisplayPartKind;
+ kind: string;
976
}
977
978
export interface QuickInfo {
@@ -1320,7 +1320,7 @@ module ts {
1320
function displayPart(text: string, kind: SymbolDisplayPartKind, symbol?: Symbol): SymbolDisplayPart {
1321
return <SymbolDisplayPart> {
1322
text: text,
1323
- kind: kind
+ kind: SymbolDisplayPartKind[kind]
1324
};
1325
1326
0 commit comments