@prismicio/types-internal 2.2.0-traverse.alpha-8 → 2.2.0-traverse.alpha-10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/content/Document.d.ts +352 -96
- package/lib/content/fields/GroupContent.d.ts +77 -21
- package/lib/content/fields/WidgetContent.d.ts +352 -96
- package/lib/content/fields/nestable/NestableContent.d.ts +44 -12
- package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +102 -81
- package/lib/content/fields/nestable/RichTextContent/Blocks.js +27 -13
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +55 -15
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +88 -24
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +33 -9
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +88 -24
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +88 -24
- package/lib/content/fields/slices/Slice/index.d.ts +198 -54
- package/lib/content/fields/slices/SliceItem.d.ts +198 -54
- package/lib/content/fields/slices/SlicesContent.d.ts +264 -72
- package/package.json +1 -1
- package/src/content/fields/nestable/RichTextContent/Blocks.ts +34 -17
- package/lib/import/converters/fields/nestable/GeooPoint.d.ts +0 -3
- package/lib/import/converters/fields/nestable/GeooPoint.js +0 -15
- package/lib/import/converters/fields/nestable/RichText.d.ts +0 -4
- package/lib/import/converters/fields/nestable/RichText.js +0 -55
|
@@ -254,7 +254,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
254
254
|
text: string;
|
|
255
255
|
} & {
|
|
256
256
|
spans?: ({
|
|
257
|
-
data
|
|
257
|
+
data: ({
|
|
258
258
|
__TYPE__: "ImageLink";
|
|
259
259
|
} & {
|
|
260
260
|
id: string;
|
|
@@ -293,10 +293,18 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
293
293
|
title?: string;
|
|
294
294
|
} | null | undefined;
|
|
295
295
|
});
|
|
296
|
-
} & {
|
|
297
296
|
start: number;
|
|
298
297
|
end: number;
|
|
299
|
-
type: "
|
|
298
|
+
type: "hyperlink";
|
|
299
|
+
} | {
|
|
300
|
+
data: string;
|
|
301
|
+
start: number;
|
|
302
|
+
end: number;
|
|
303
|
+
type: "label";
|
|
304
|
+
} | {
|
|
305
|
+
start: number;
|
|
306
|
+
end: number;
|
|
307
|
+
type: string;
|
|
300
308
|
})[];
|
|
301
309
|
};
|
|
302
310
|
} & {
|
|
@@ -562,7 +570,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
562
570
|
text: string;
|
|
563
571
|
} & {
|
|
564
572
|
spans?: ({
|
|
565
|
-
data
|
|
573
|
+
data: ({
|
|
566
574
|
__TYPE__: "ImageLink";
|
|
567
575
|
} & {
|
|
568
576
|
id: string;
|
|
@@ -601,10 +609,18 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
601
609
|
title?: string;
|
|
602
610
|
} | null | undefined;
|
|
603
611
|
});
|
|
604
|
-
} & {
|
|
605
612
|
start: number;
|
|
606
613
|
end: number;
|
|
607
|
-
type: "
|
|
614
|
+
type: "hyperlink";
|
|
615
|
+
} | {
|
|
616
|
+
data: string;
|
|
617
|
+
start: number;
|
|
618
|
+
end: number;
|
|
619
|
+
type: "label";
|
|
620
|
+
} | {
|
|
621
|
+
start: number;
|
|
622
|
+
end: number;
|
|
623
|
+
type: string;
|
|
608
624
|
})[];
|
|
609
625
|
};
|
|
610
626
|
} & {
|
|
@@ -871,7 +887,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
871
887
|
text: string;
|
|
872
888
|
} & {
|
|
873
889
|
spans?: ({
|
|
874
|
-
data
|
|
890
|
+
data: ({
|
|
875
891
|
__TYPE__: "ImageLink";
|
|
876
892
|
} & {
|
|
877
893
|
id: string;
|
|
@@ -910,10 +926,18 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
910
926
|
title?: string;
|
|
911
927
|
} | null | undefined;
|
|
912
928
|
});
|
|
913
|
-
} & {
|
|
914
929
|
start: number;
|
|
915
930
|
end: number;
|
|
916
|
-
type: "
|
|
931
|
+
type: "hyperlink";
|
|
932
|
+
} | {
|
|
933
|
+
data: string;
|
|
934
|
+
start: number;
|
|
935
|
+
end: number;
|
|
936
|
+
type: "label";
|
|
937
|
+
} | {
|
|
938
|
+
start: number;
|
|
939
|
+
end: number;
|
|
940
|
+
type: string;
|
|
917
941
|
})[];
|
|
918
942
|
};
|
|
919
943
|
} & {
|
|
@@ -1179,7 +1203,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1179
1203
|
text: string;
|
|
1180
1204
|
} & {
|
|
1181
1205
|
spans?: ({
|
|
1182
|
-
data
|
|
1206
|
+
data: ({
|
|
1183
1207
|
__TYPE__: "ImageLink";
|
|
1184
1208
|
} & {
|
|
1185
1209
|
id: string;
|
|
@@ -1218,10 +1242,18 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1218
1242
|
title?: string;
|
|
1219
1243
|
} | null | undefined;
|
|
1220
1244
|
});
|
|
1221
|
-
} & {
|
|
1222
1245
|
start: number;
|
|
1223
1246
|
end: number;
|
|
1224
|
-
type: "
|
|
1247
|
+
type: "hyperlink";
|
|
1248
|
+
} | {
|
|
1249
|
+
data: string;
|
|
1250
|
+
start: number;
|
|
1251
|
+
end: number;
|
|
1252
|
+
type: "label";
|
|
1253
|
+
} | {
|
|
1254
|
+
start: number;
|
|
1255
|
+
end: number;
|
|
1256
|
+
type: string;
|
|
1225
1257
|
})[];
|
|
1226
1258
|
};
|
|
1227
1259
|
} & {
|
|
@@ -1489,7 +1521,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1489
1521
|
text: string;
|
|
1490
1522
|
} & {
|
|
1491
1523
|
spans?: ({
|
|
1492
|
-
data
|
|
1524
|
+
data: ({
|
|
1493
1525
|
__TYPE__: "ImageLink";
|
|
1494
1526
|
} & {
|
|
1495
1527
|
id: string;
|
|
@@ -1528,10 +1560,18 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1528
1560
|
title?: string;
|
|
1529
1561
|
} | null | undefined;
|
|
1530
1562
|
});
|
|
1531
|
-
} & {
|
|
1532
1563
|
start: number;
|
|
1533
1564
|
end: number;
|
|
1534
|
-
type: "
|
|
1565
|
+
type: "hyperlink";
|
|
1566
|
+
} | {
|
|
1567
|
+
data: string;
|
|
1568
|
+
start: number;
|
|
1569
|
+
end: number;
|
|
1570
|
+
type: "label";
|
|
1571
|
+
} | {
|
|
1572
|
+
start: number;
|
|
1573
|
+
end: number;
|
|
1574
|
+
type: string;
|
|
1535
1575
|
})[];
|
|
1536
1576
|
};
|
|
1537
1577
|
} & {
|
|
@@ -1797,7 +1837,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1797
1837
|
text: string;
|
|
1798
1838
|
} & {
|
|
1799
1839
|
spans?: ({
|
|
1800
|
-
data
|
|
1840
|
+
data: ({
|
|
1801
1841
|
__TYPE__: "ImageLink";
|
|
1802
1842
|
} & {
|
|
1803
1843
|
id: string;
|
|
@@ -1836,10 +1876,18 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1836
1876
|
title?: string;
|
|
1837
1877
|
} | null | undefined;
|
|
1838
1878
|
});
|
|
1839
|
-
} & {
|
|
1840
1879
|
start: number;
|
|
1841
1880
|
end: number;
|
|
1842
|
-
type: "
|
|
1881
|
+
type: "hyperlink";
|
|
1882
|
+
} | {
|
|
1883
|
+
data: string;
|
|
1884
|
+
start: number;
|
|
1885
|
+
end: number;
|
|
1886
|
+
type: "label";
|
|
1887
|
+
} | {
|
|
1888
|
+
start: number;
|
|
1889
|
+
end: number;
|
|
1890
|
+
type: string;
|
|
1843
1891
|
})[];
|
|
1844
1892
|
};
|
|
1845
1893
|
} & {
|
|
@@ -2136,7 +2184,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2136
2184
|
text: t.StringC;
|
|
2137
2185
|
}>, t.PartialC<{
|
|
2138
2186
|
spans: t.Type<({
|
|
2139
|
-
data
|
|
2187
|
+
data: ({
|
|
2140
2188
|
__TYPE__: "ImageLink";
|
|
2141
2189
|
} & {
|
|
2142
2190
|
id: string;
|
|
@@ -2175,12 +2223,20 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2175
2223
|
title?: string;
|
|
2176
2224
|
} | null | undefined;
|
|
2177
2225
|
});
|
|
2178
|
-
} & {
|
|
2179
2226
|
start: number;
|
|
2180
2227
|
end: number;
|
|
2181
|
-
type: "
|
|
2228
|
+
type: "hyperlink";
|
|
2229
|
+
} | {
|
|
2230
|
+
data: string;
|
|
2231
|
+
start: number;
|
|
2232
|
+
end: number;
|
|
2233
|
+
type: "label";
|
|
2234
|
+
} | {
|
|
2235
|
+
start: number;
|
|
2236
|
+
end: number;
|
|
2237
|
+
type: string;
|
|
2182
2238
|
})[], ({
|
|
2183
|
-
data
|
|
2239
|
+
data: ({
|
|
2184
2240
|
__TYPE__: "ImageLink";
|
|
2185
2241
|
} & {
|
|
2186
2242
|
id: string;
|
|
@@ -2219,10 +2275,18 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2219
2275
|
title?: string;
|
|
2220
2276
|
} | null | undefined;
|
|
2221
2277
|
});
|
|
2222
|
-
} & {
|
|
2223
2278
|
start: number;
|
|
2224
2279
|
end: number;
|
|
2225
|
-
type: "
|
|
2280
|
+
type: "hyperlink";
|
|
2281
|
+
} | {
|
|
2282
|
+
data: string;
|
|
2283
|
+
start: number;
|
|
2284
|
+
end: number;
|
|
2285
|
+
type: "label";
|
|
2286
|
+
} | {
|
|
2287
|
+
start: number;
|
|
2288
|
+
end: number;
|
|
2289
|
+
type: string;
|
|
2226
2290
|
})[], unknown>;
|
|
2227
2291
|
}>]>;
|
|
2228
2292
|
}>, t.PartialC<{
|
|
@@ -2515,7 +2579,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2515
2579
|
text: t.StringC;
|
|
2516
2580
|
}>, t.PartialC<{
|
|
2517
2581
|
spans: t.Type<({
|
|
2518
|
-
data
|
|
2582
|
+
data: ({
|
|
2519
2583
|
__TYPE__: "ImageLink";
|
|
2520
2584
|
} & {
|
|
2521
2585
|
id: string;
|
|
@@ -2554,12 +2618,20 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2554
2618
|
title?: string;
|
|
2555
2619
|
} | null | undefined;
|
|
2556
2620
|
});
|
|
2557
|
-
} & {
|
|
2558
2621
|
start: number;
|
|
2559
2622
|
end: number;
|
|
2560
|
-
type: "
|
|
2623
|
+
type: "hyperlink";
|
|
2624
|
+
} | {
|
|
2625
|
+
data: string;
|
|
2626
|
+
start: number;
|
|
2627
|
+
end: number;
|
|
2628
|
+
type: "label";
|
|
2629
|
+
} | {
|
|
2630
|
+
start: number;
|
|
2631
|
+
end: number;
|
|
2632
|
+
type: string;
|
|
2561
2633
|
})[], ({
|
|
2562
|
-
data
|
|
2634
|
+
data: ({
|
|
2563
2635
|
__TYPE__: "ImageLink";
|
|
2564
2636
|
} & {
|
|
2565
2637
|
id: string;
|
|
@@ -2598,10 +2670,18 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2598
2670
|
title?: string;
|
|
2599
2671
|
} | null | undefined;
|
|
2600
2672
|
});
|
|
2601
|
-
} & {
|
|
2602
2673
|
start: number;
|
|
2603
2674
|
end: number;
|
|
2604
|
-
type: "
|
|
2675
|
+
type: "hyperlink";
|
|
2676
|
+
} | {
|
|
2677
|
+
data: string;
|
|
2678
|
+
start: number;
|
|
2679
|
+
end: number;
|
|
2680
|
+
type: "label";
|
|
2681
|
+
} | {
|
|
2682
|
+
start: number;
|
|
2683
|
+
end: number;
|
|
2684
|
+
type: string;
|
|
2605
2685
|
})[], unknown>;
|
|
2606
2686
|
}>]>;
|
|
2607
2687
|
}>, t.PartialC<{
|
|
@@ -2896,7 +2976,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2896
2976
|
text: t.StringC;
|
|
2897
2977
|
}>, t.PartialC<{
|
|
2898
2978
|
spans: t.Type<({
|
|
2899
|
-
data
|
|
2979
|
+
data: ({
|
|
2900
2980
|
__TYPE__: "ImageLink";
|
|
2901
2981
|
} & {
|
|
2902
2982
|
id: string;
|
|
@@ -2935,12 +3015,20 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2935
3015
|
title?: string;
|
|
2936
3016
|
} | null | undefined;
|
|
2937
3017
|
});
|
|
2938
|
-
} & {
|
|
2939
3018
|
start: number;
|
|
2940
3019
|
end: number;
|
|
2941
|
-
type: "
|
|
3020
|
+
type: "hyperlink";
|
|
3021
|
+
} | {
|
|
3022
|
+
data: string;
|
|
3023
|
+
start: number;
|
|
3024
|
+
end: number;
|
|
3025
|
+
type: "label";
|
|
3026
|
+
} | {
|
|
3027
|
+
start: number;
|
|
3028
|
+
end: number;
|
|
3029
|
+
type: string;
|
|
2942
3030
|
})[], ({
|
|
2943
|
-
data
|
|
3031
|
+
data: ({
|
|
2944
3032
|
__TYPE__: "ImageLink";
|
|
2945
3033
|
} & {
|
|
2946
3034
|
id: string;
|
|
@@ -2979,10 +3067,18 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2979
3067
|
title?: string;
|
|
2980
3068
|
} | null | undefined;
|
|
2981
3069
|
});
|
|
2982
|
-
} & {
|
|
2983
3070
|
start: number;
|
|
2984
3071
|
end: number;
|
|
2985
|
-
type: "
|
|
3072
|
+
type: "hyperlink";
|
|
3073
|
+
} | {
|
|
3074
|
+
data: string;
|
|
3075
|
+
start: number;
|
|
3076
|
+
end: number;
|
|
3077
|
+
type: "label";
|
|
3078
|
+
} | {
|
|
3079
|
+
start: number;
|
|
3080
|
+
end: number;
|
|
3081
|
+
type: string;
|
|
2986
3082
|
})[], unknown>;
|
|
2987
3083
|
}>]>;
|
|
2988
3084
|
}>, t.PartialC<{
|
|
@@ -3275,7 +3371,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3275
3371
|
text: t.StringC;
|
|
3276
3372
|
}>, t.PartialC<{
|
|
3277
3373
|
spans: t.Type<({
|
|
3278
|
-
data
|
|
3374
|
+
data: ({
|
|
3279
3375
|
__TYPE__: "ImageLink";
|
|
3280
3376
|
} & {
|
|
3281
3377
|
id: string;
|
|
@@ -3314,12 +3410,20 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3314
3410
|
title?: string;
|
|
3315
3411
|
} | null | undefined;
|
|
3316
3412
|
});
|
|
3317
|
-
} & {
|
|
3318
3413
|
start: number;
|
|
3319
3414
|
end: number;
|
|
3320
|
-
type: "
|
|
3415
|
+
type: "hyperlink";
|
|
3416
|
+
} | {
|
|
3417
|
+
data: string;
|
|
3418
|
+
start: number;
|
|
3419
|
+
end: number;
|
|
3420
|
+
type: "label";
|
|
3421
|
+
} | {
|
|
3422
|
+
start: number;
|
|
3423
|
+
end: number;
|
|
3424
|
+
type: string;
|
|
3321
3425
|
})[], ({
|
|
3322
|
-
data
|
|
3426
|
+
data: ({
|
|
3323
3427
|
__TYPE__: "ImageLink";
|
|
3324
3428
|
} & {
|
|
3325
3429
|
id: string;
|
|
@@ -3358,10 +3462,18 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3358
3462
|
title?: string;
|
|
3359
3463
|
} | null | undefined;
|
|
3360
3464
|
});
|
|
3361
|
-
} & {
|
|
3362
3465
|
start: number;
|
|
3363
3466
|
end: number;
|
|
3364
|
-
type: "
|
|
3467
|
+
type: "hyperlink";
|
|
3468
|
+
} | {
|
|
3469
|
+
data: string;
|
|
3470
|
+
start: number;
|
|
3471
|
+
end: number;
|
|
3472
|
+
type: "label";
|
|
3473
|
+
} | {
|
|
3474
|
+
start: number;
|
|
3475
|
+
end: number;
|
|
3476
|
+
type: string;
|
|
3365
3477
|
})[], unknown>;
|
|
3366
3478
|
}>]>;
|
|
3367
3479
|
}>, t.PartialC<{
|
|
@@ -3653,7 +3765,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3653
3765
|
text: t.StringC;
|
|
3654
3766
|
}>, t.PartialC<{
|
|
3655
3767
|
spans: t.Type<({
|
|
3656
|
-
data
|
|
3768
|
+
data: ({
|
|
3657
3769
|
__TYPE__: "ImageLink";
|
|
3658
3770
|
} & {
|
|
3659
3771
|
id: string;
|
|
@@ -3692,12 +3804,20 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3692
3804
|
title?: string;
|
|
3693
3805
|
} | null | undefined;
|
|
3694
3806
|
});
|
|
3695
|
-
} & {
|
|
3696
3807
|
start: number;
|
|
3697
3808
|
end: number;
|
|
3698
|
-
type: "
|
|
3809
|
+
type: "hyperlink";
|
|
3810
|
+
} | {
|
|
3811
|
+
data: string;
|
|
3812
|
+
start: number;
|
|
3813
|
+
end: number;
|
|
3814
|
+
type: "label";
|
|
3815
|
+
} | {
|
|
3816
|
+
start: number;
|
|
3817
|
+
end: number;
|
|
3818
|
+
type: string;
|
|
3699
3819
|
})[], ({
|
|
3700
|
-
data
|
|
3820
|
+
data: ({
|
|
3701
3821
|
__TYPE__: "ImageLink";
|
|
3702
3822
|
} & {
|
|
3703
3823
|
id: string;
|
|
@@ -3736,10 +3856,18 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3736
3856
|
title?: string;
|
|
3737
3857
|
} | null | undefined;
|
|
3738
3858
|
});
|
|
3739
|
-
} & {
|
|
3740
3859
|
start: number;
|
|
3741
3860
|
end: number;
|
|
3742
|
-
type: "
|
|
3861
|
+
type: "hyperlink";
|
|
3862
|
+
} | {
|
|
3863
|
+
data: string;
|
|
3864
|
+
start: number;
|
|
3865
|
+
end: number;
|
|
3866
|
+
type: "label";
|
|
3867
|
+
} | {
|
|
3868
|
+
start: number;
|
|
3869
|
+
end: number;
|
|
3870
|
+
type: string;
|
|
3743
3871
|
})[], unknown>;
|
|
3744
3872
|
}>]>;
|
|
3745
3873
|
}>, t.PartialC<{
|
|
@@ -4033,7 +4161,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4033
4161
|
text: t.StringC;
|
|
4034
4162
|
}>, t.PartialC<{
|
|
4035
4163
|
spans: t.Type<({
|
|
4036
|
-
data
|
|
4164
|
+
data: ({
|
|
4037
4165
|
__TYPE__: "ImageLink";
|
|
4038
4166
|
} & {
|
|
4039
4167
|
id: string;
|
|
@@ -4072,12 +4200,20 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4072
4200
|
title?: string;
|
|
4073
4201
|
} | null | undefined;
|
|
4074
4202
|
});
|
|
4075
|
-
} & {
|
|
4076
4203
|
start: number;
|
|
4077
4204
|
end: number;
|
|
4078
|
-
type: "
|
|
4205
|
+
type: "hyperlink";
|
|
4206
|
+
} | {
|
|
4207
|
+
data: string;
|
|
4208
|
+
start: number;
|
|
4209
|
+
end: number;
|
|
4210
|
+
type: "label";
|
|
4211
|
+
} | {
|
|
4212
|
+
start: number;
|
|
4213
|
+
end: number;
|
|
4214
|
+
type: string;
|
|
4079
4215
|
})[], ({
|
|
4080
|
-
data
|
|
4216
|
+
data: ({
|
|
4081
4217
|
__TYPE__: "ImageLink";
|
|
4082
4218
|
} & {
|
|
4083
4219
|
id: string;
|
|
@@ -4116,10 +4252,18 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4116
4252
|
title?: string;
|
|
4117
4253
|
} | null | undefined;
|
|
4118
4254
|
});
|
|
4119
|
-
} & {
|
|
4120
4255
|
start: number;
|
|
4121
4256
|
end: number;
|
|
4122
|
-
type: "
|
|
4257
|
+
type: "hyperlink";
|
|
4258
|
+
} | {
|
|
4259
|
+
data: string;
|
|
4260
|
+
start: number;
|
|
4261
|
+
end: number;
|
|
4262
|
+
type: "label";
|
|
4263
|
+
} | {
|
|
4264
|
+
start: number;
|
|
4265
|
+
end: number;
|
|
4266
|
+
type: string;
|
|
4123
4267
|
})[], unknown>;
|
|
4124
4268
|
}>]>;
|
|
4125
4269
|
}>, t.PartialC<{
|