Skip to content

Commit 0b902bf

Browse files
committed
Accept baselines
1 parent e52efb0 commit 0b902bf

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4872,6 +4872,15 @@ declare namespace ts {
48724872
* the 'Collapse to Definitions' command is invoked.
48734873
*/
48744874
autoCollapse: boolean;
4875+
/**
4876+
* Classification of the contents of the span
4877+
*/
4878+
kind: OutliningSpanKind;
4879+
}
4880+
enum OutliningSpanKind {
4881+
Comment = "comment",
4882+
Region = "region",
4883+
Code = "code"
48754884
}
48764885
enum OutputFileType {
48774886
JavaScript = 0,
@@ -5594,6 +5603,10 @@ declare namespace ts.server.protocol {
55945603
* the 'Collapse to Definitions' command is invoked.
55955604
*/
55965605
autoCollapse: boolean;
5606+
/**
5607+
* Classification of the contents of the span
5608+
*/
5609+
kind: OutliningSpanKind;
55975610
}
55985611
/**
55995612
* Response to OutliningSpansRequest request.

tests/baselines/reference/api/typescript.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4872,6 +4872,15 @@ declare namespace ts {
48724872
* the 'Collapse to Definitions' command is invoked.
48734873
*/
48744874
autoCollapse: boolean;
4875+
/**
4876+
* Classification of the contents of the span
4877+
*/
4878+
kind: OutliningSpanKind;
4879+
}
4880+
enum OutliningSpanKind {
4881+
Comment = "comment",
4882+
Region = "region",
4883+
Code = "code"
48754884
}
48764885
enum OutputFileType {
48774886
JavaScript = 0,

0 commit comments

Comments
 (0)