mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-13 01:33:08 -05:00
Fix #22419: Add kind field to OutliningSpan
This commit is contained in:
@@ -816,6 +816,17 @@ namespace ts {
|
||||
* the 'Collapse to Definitions' command is invoked.
|
||||
*/
|
||||
autoCollapse: boolean;
|
||||
|
||||
/**
|
||||
* Classification of the contents of the span
|
||||
*/
|
||||
kind: OutliningSpanKind;
|
||||
}
|
||||
|
||||
export const enum OutliningSpanKind {
|
||||
Comment = "comment",
|
||||
Region = "region",
|
||||
Code = "code"
|
||||
}
|
||||
|
||||
export const enum OutputFileType {
|
||||
|
||||
Reference in New Issue
Block a user