diff --git a/tests/baselines/reference/api/tsserverlibrary.d.ts b/tests/baselines/reference/api/tsserverlibrary.d.ts index 62a916e732a..c52960b574b 100644 --- a/tests/baselines/reference/api/tsserverlibrary.d.ts +++ b/tests/baselines/reference/api/tsserverlibrary.d.ts @@ -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. diff --git a/tests/baselines/reference/api/typescript.d.ts b/tests/baselines/reference/api/typescript.d.ts index e6ad7e5f3e8..9c2639305df 100644 --- a/tests/baselines/reference/api/typescript.d.ts +++ b/tests/baselines/reference/api/typescript.d.ts @@ -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,