add DocumentSymbol#detail, #34968

This commit is contained in:
Johannes Rieken
2018-06-13 16:14:15 +02:00
parent a9a919556a
commit ae9063f094
8 changed files with 21 additions and 2 deletions

1
src/vs/monaco.d.ts vendored
View File

@@ -4873,6 +4873,7 @@ declare namespace monaco.languages {
export interface DocumentSymbol {
name: string;
detail: string;
kind: SymbolKind;
containerName?: string;
fullRange: IRange;