Accept baselines

This commit is contained in:
Mohamed Hegazy 2018-05-04 08:39:36 -07:00
parent e52efb04f3
commit 0b902bf489
2 changed files with 22 additions and 0 deletions

View file

@ -4872,6 +4872,15 @@ declare namespace ts {
* the 'Collapse to Definitions' command is invoked.
*/
autoCollapse: boolean;
/**
* Classification of the contents of the span
*/
kind: OutliningSpanKind;
}
enum OutliningSpanKind {
Comment = "comment",
Region = "region",
Code = "code"
}
enum OutputFileType {
JavaScript = 0,
@ -5594,6 +5603,10 @@ declare namespace ts.server.protocol {
* the 'Collapse to Definitions' command is invoked.
*/
autoCollapse: boolean;
/**
* Classification of the contents of the span
*/
kind: OutliningSpanKind;
}
/**
* Response to OutliningSpansRequest request.

View file

@ -4872,6 +4872,15 @@ declare namespace ts {
* the 'Collapse to Definitions' command is invoked.
*/
autoCollapse: boolean;
/**
* Classification of the contents of the span
*/
kind: OutliningSpanKind;
}
enum OutliningSpanKind {
Comment = "comment",
Region = "region",
Code = "code"
}
enum OutputFileType {
JavaScript = 0,