Add JSDoc tag support for completion entry details

This commit is contained in:
Mine Yalcinalp Starks
2016-12-07 18:35:43 -08:00
parent cf2bfc0a12
commit 5130e95008
6 changed files with 72 additions and 28 deletions

View File

@@ -1530,6 +1530,11 @@ namespace ts.server.protocol {
* Documentation strings for the symbol.
*/
documentation: SymbolDisplayPart[];
/**
* JSDoc tags for the symbol.
*/
tags: JSDocTagInfo[];
}
export interface CompletionsResponse extends Response {