@@ -45,8 +45,7 @@ export interface Content {
4545}
4646
4747export interface CommentAttachable
48- extends LeadingCommentAttachable ,
49- TrailingCommentAttachable { }
48+ extends LeadingCommentAttachable , TrailingCommentAttachable { }
5049
5150export interface LeadingCommentAttachable {
5251 /** comments in front of the node */
@@ -124,9 +123,7 @@ export interface Document extends Parent, TrailingCommentAttachable {
124123}
125124
126125export interface DocumentHead
127- extends Parent ,
128- EndCommentAttachable ,
129- TrailingCommentAttachable {
126+ extends Parent , EndCommentAttachable , TrailingCommentAttachable {
130127 type : "documentHead" ;
131128 children : Directive [ ] ;
132129}
@@ -190,26 +187,19 @@ export interface MappingItem extends MappingItemBase {
190187}
191188
192189export interface MappingKey
193- extends Parent ,
194- TrailingCommentAttachable ,
195- EndCommentAttachable {
190+ extends Parent , TrailingCommentAttachable , EndCommentAttachable {
196191 type : "mappingKey" ;
197192 children : [ ] | [ ContentNode ] ;
198193}
199194
200195export interface MappingValue
201- extends Parent ,
202- CommentAttachable ,
203- EndCommentAttachable {
196+ extends Parent , CommentAttachable , EndCommentAttachable {
204197 type : "mappingValue" ;
205198 children : [ ] | [ ContentNode ] ;
206199}
207200
208201export interface Sequence
209- extends Parent ,
210- Content ,
211- LeadingCommentAttachable ,
212- EndCommentAttachable {
202+ extends Parent , Content , LeadingCommentAttachable , EndCommentAttachable {
213203 type : "sequence" ;
214204 children : SequenceItem [ ] ;
215205}
@@ -219,17 +209,12 @@ export interface SequenceItemBase extends Parent {
219209}
220210
221211export interface SequenceItem
222- extends SequenceItemBase ,
223- CommentAttachable ,
224- EndCommentAttachable {
212+ extends SequenceItemBase , CommentAttachable , EndCommentAttachable {
225213 type : "sequenceItem" ;
226214}
227215
228216export interface FlowCollection
229- extends Parent ,
230- Content ,
231- CommentAttachable ,
232- EndCommentAttachable {
217+ extends Parent , Content , CommentAttachable , EndCommentAttachable {
233218 children : Array < FlowMappingItem | FlowSequenceItem > ;
234219}
235220
0 commit comments