File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ type _CustomLinkMetaWithoutTypeField =
5252 link ?: string ;
5353 collapsible ?: boolean ;
5454 collapsed ?: boolean ;
55- items ? : _CustomLinkMetaWithoutTypeField [ ] ;
55+ items : _CustomLinkMetaWithoutTypeField [ ] ;
5656 } ;
5757
5858export type CustomLinkMeta =
@@ -78,7 +78,7 @@ export type CustomLinkMeta =
7878 // DirSideMeta
7979 collapsible ?: boolean ;
8080 collapsed ?: boolean ;
81- items ? : _CustomLinkMetaWithoutTypeField [ ] ;
81+ items : _CustomLinkMetaWithoutTypeField [ ] ;
8282 } ;
8383
8484export type SideMetaItem =
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ export type CustomLinkMeta =
139139 link? : string ;
140140 collapsible? : boolean ;
141141 collapsed? : boolean ;
142- items? : _CustomLinkMetaWithoutTypeField [];
142+ items: _CustomLinkMetaWithoutTypeField [];
143143 };
144144
145145export type SideMetaItem =
@@ -308,7 +308,7 @@ export type CustomLinkMeta =
308308 link? : string ;
309309 collapsible? : boolean ;
310310 collapsed? : boolean ;
311- items? : _CustomLinkMetaWithoutTypeField [];
311+ items: _CustomLinkMetaWithoutTypeField [];
312312 };
313313```
314314
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ export type CustomLinkMeta =
140140 link? : string ;
141141 collapsible? : boolean ;
142142 collapsed? : boolean ;
143- items? : _CustomLinkMetaWithoutTypeField [];
143+ items: _CustomLinkMetaWithoutTypeField [];
144144 };
145145
146146export type SideMetaItem =
@@ -311,7 +311,7 @@ export type CustomLinkMeta =
311311 link? : string ;
312312 collapsible? : boolean ;
313313 collapsed? : boolean ;
314- items? : _CustomLinkMetaWithoutTypeField [];
314+ items: _CustomLinkMetaWithoutTypeField [];
315315 };
316316```
317317
You can’t perform that action at this time.
0 commit comments