Add comments to kinds

This commit is contained in:
Mohamed Hegazy 2018-05-05 12:38:59 -07:00
parent 12ed49bada
commit 3bc3f2d404
3 changed files with 15 additions and 0 deletions

View file

@ -824,9 +824,16 @@ namespace ts {
}
export const enum OutliningSpanKind {
/** Single or multi-line comments */
Comment = "comment",
/** Sections marked by '// #region' and '// #endregion' comments */
Region = "region",
/** Declarations and expressions */
Code = "code",
/** Contiguous blocks of import declarations */
Imports = "imports"
}

View file

@ -4890,9 +4890,13 @@ declare namespace ts {
kind: OutliningSpanKind;
}
enum OutliningSpanKind {
/** Single or multi-line comments */
Comment = "comment",
/** Sections marked by '// #region' and '// #endregion' comments */
Region = "region",
/** Declarations and expressions */
Code = "code",
/** Contiguous blocks of import declarations */
Imports = "imports"
}
enum OutputFileType {

View file

@ -4890,9 +4890,13 @@ declare namespace ts {
kind: OutliningSpanKind;
}
enum OutliningSpanKind {
/** Single or multi-line comments */
Comment = "comment",
/** Sections marked by '// #region' and '// #endregion' comments */
Region = "region",
/** Declarations and expressions */
Code = "code",
/** Contiguous blocks of import declarations */
Imports = "imports"
}
enum OutputFileType {