File tree Expand file tree Collapse file tree
tests/baselines/reference/api Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments