mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Add comments to kinds
This commit is contained in:
@@ -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"
|
||||
}
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user