File tree 3 files changed +15
-0
lines changed
tests/baselines/reference/api
3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -824,9 +824,16 @@ namespace ts {
824
824
}
825
825
826
826
export const enum OutliningSpanKind {
827
+ /** Single or multi-line comments */
827
828
Comment = "comment" ,
829
+
830
+ /** Sections marked by '// #region' and '// #endregion' comments */
828
831
Region = "region" ,
832
+
833
+ /** Declarations and expressions */
829
834
Code = "code" ,
835
+
836
+ /** Contiguous blocks of import declarations */
830
837
Imports = "imports"
831
838
}
832
839
Original file line number Diff line number Diff line change @@ -4890,9 +4890,13 @@ declare namespace ts {
4890
4890
kind : OutliningSpanKind ;
4891
4891
}
4892
4892
enum OutliningSpanKind {
4893
+ /** Single or multi-line comments */
4893
4894
Comment = "comment" ,
4895
+ /** Sections marked by '// #region' and '// #endregion' comments */
4894
4896
Region = "region" ,
4897
+ /** Declarations and expressions */
4895
4898
Code = "code" ,
4899
+ /** Contiguous blocks of import declarations */
4896
4900
Imports = "imports"
4897
4901
}
4898
4902
enum OutputFileType {
Original file line number Diff line number Diff line change @@ -4890,9 +4890,13 @@ declare namespace ts {
4890
4890
kind : OutliningSpanKind ;
4891
4891
}
4892
4892
enum OutliningSpanKind {
4893
+ /** Single or multi-line comments */
4893
4894
Comment = "comment" ,
4895
+ /** Sections marked by '// #region' and '// #endregion' comments */
4894
4896
Region = "region" ,
4897
+ /** Declarations and expressions */
4895
4898
Code = "code" ,
4899
+ /** Contiguous blocks of import declarations */
4896
4900
Imports = "imports"
4897
4901
}
4898
4902
enum OutputFileType {
You can’t perform that action at this time.
0 commit comments