@projectwallace/css-analyzer 5.13.3 → 5.14.0

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/dist/index.d.ts CHANGED
@@ -17,18 +17,21 @@ export function analyze(css: string, options?: Options): {
17
17
  total: number;
18
18
  size: number;
19
19
  };
20
- embeddedContent: {
20
+ embeddedContent: ({
21
21
  total: number;
22
22
  totalUnique: number;
23
23
  uniquenessRatio: number;
24
24
  unique: Record<string, number>;
25
+ } & ({
25
26
  __unstable__uniqueWithLocations: Record<string, {
26
27
  line: number;
27
28
  column: number;
28
29
  offset: number;
29
30
  length: number;
30
31
  }[]>;
31
- } & {
32
+ } | {
33
+ __unstable__uniqueWithLocations?: undefined;
34
+ })) & {
32
35
  size: {
33
36
  total: number;
34
37
  ratio: number;
@@ -44,11 +47,13 @@ export function analyze(css: string, options?: Options): {
44
47
  } & ({
45
48
  __unstable__uniqueWithLocations?: undefined;
46
49
  } | {
47
- offset: number;
48
- line: number;
49
- column: number;
50
- length: number;
51
- }[]);
50
+ __unstable__uniqueWithLocations: {
51
+ offset: number;
52
+ line: number;
53
+ column: number;
54
+ length: number;
55
+ }[];
56
+ });
52
57
  };
53
58
  };
54
59
  };
@@ -74,99 +79,123 @@ export function analyze(css: string, options?: Options): {
74
79
  totalUnique: number;
75
80
  uniquenessRatio: number;
76
81
  unique: Record<string, number>;
82
+ } & ({
77
83
  __unstable__uniqueWithLocations: Record<string, {
78
84
  line: number;
79
85
  column: number;
80
86
  offset: number;
81
87
  length: number;
82
88
  }[]>;
83
- };
84
- media: {
89
+ } | {
90
+ __unstable__uniqueWithLocations?: undefined;
91
+ });
92
+ media: ({
85
93
  total: number;
86
94
  totalUnique: number;
87
95
  uniquenessRatio: number;
88
96
  unique: Record<string, number>;
97
+ } & ({
89
98
  __unstable__uniqueWithLocations: Record<string, {
90
99
  line: number;
91
100
  column: number;
92
101
  offset: number;
93
102
  length: number;
94
103
  }[]>;
95
- } & {
104
+ } | {
105
+ __unstable__uniqueWithLocations?: undefined;
106
+ })) & {
96
107
  browserhacks: {
97
108
  total: number;
98
109
  totalUnique: number;
99
110
  uniquenessRatio: number;
100
111
  unique: Record<string, number>;
112
+ } & ({
101
113
  __unstable__uniqueWithLocations: Record<string, {
102
114
  line: number;
103
115
  column: number;
104
116
  offset: number;
105
117
  length: number;
106
118
  }[]>;
107
- };
119
+ } | {
120
+ __unstable__uniqueWithLocations?: undefined;
121
+ });
108
122
  };
109
123
  charset: {
110
124
  total: number;
111
125
  totalUnique: number;
112
126
  uniquenessRatio: number;
113
127
  unique: Record<string, number>;
128
+ } & ({
114
129
  __unstable__uniqueWithLocations: Record<string, {
115
130
  line: number;
116
131
  column: number;
117
132
  offset: number;
118
133
  length: number;
119
134
  }[]>;
120
- };
121
- supports: {
135
+ } | {
136
+ __unstable__uniqueWithLocations?: undefined;
137
+ });
138
+ supports: ({
122
139
  total: number;
123
140
  totalUnique: number;
124
141
  uniquenessRatio: number;
125
142
  unique: Record<string, number>;
143
+ } & ({
126
144
  __unstable__uniqueWithLocations: Record<string, {
127
145
  line: number;
128
146
  column: number;
129
147
  offset: number;
130
148
  length: number;
131
149
  }[]>;
132
- } & {
150
+ } | {
151
+ __unstable__uniqueWithLocations?: undefined;
152
+ })) & {
133
153
  browserhacks: {
134
154
  total: number;
135
155
  totalUnique: number;
136
156
  uniquenessRatio: number;
137
157
  unique: Record<string, number>;
158
+ } & ({
138
159
  __unstable__uniqueWithLocations: Record<string, {
139
160
  line: number;
140
161
  column: number;
141
162
  offset: number;
142
163
  length: number;
143
164
  }[]>;
144
- };
165
+ } | {
166
+ __unstable__uniqueWithLocations?: undefined;
167
+ });
145
168
  };
146
- keyframes: {
169
+ keyframes: ({
147
170
  total: number;
148
171
  totalUnique: number;
149
172
  uniquenessRatio: number;
150
173
  unique: Record<string, number>;
174
+ } & ({
151
175
  __unstable__uniqueWithLocations: Record<string, {
152
176
  line: number;
153
177
  column: number;
154
178
  offset: number;
155
179
  length: number;
156
180
  }[]>;
157
- } & {
158
- prefixed: {
181
+ } | {
182
+ __unstable__uniqueWithLocations?: undefined;
183
+ })) & {
184
+ prefixed: ({
159
185
  total: number;
160
186
  totalUnique: number;
161
187
  uniquenessRatio: number;
162
188
  unique: Record<string, number>;
189
+ } & ({
163
190
  __unstable__uniqueWithLocations: Record<string, {
164
191
  line: number;
165
192
  column: number;
166
193
  offset: number;
167
194
  length: number;
168
195
  }[]>;
169
- } & {
196
+ } | {
197
+ __unstable__uniqueWithLocations?: undefined;
198
+ })) & {
170
199
  ratio: number;
171
200
  };
172
201
  };
@@ -175,37 +204,46 @@ export function analyze(css: string, options?: Options): {
175
204
  totalUnique: number;
176
205
  uniquenessRatio: number;
177
206
  unique: Record<string, number>;
207
+ } & ({
178
208
  __unstable__uniqueWithLocations: Record<string, {
179
209
  line: number;
180
210
  column: number;
181
211
  offset: number;
182
212
  length: number;
183
213
  }[]>;
184
- };
214
+ } | {
215
+ __unstable__uniqueWithLocations?: undefined;
216
+ });
185
217
  layer: {
186
218
  total: number;
187
219
  totalUnique: number;
188
220
  uniquenessRatio: number;
189
221
  unique: Record<string, number>;
222
+ } & ({
190
223
  __unstable__uniqueWithLocations: Record<string, {
191
224
  line: number;
192
225
  column: number;
193
226
  offset: number;
194
227
  length: number;
195
228
  }[]>;
196
- };
229
+ } | {
230
+ __unstable__uniqueWithLocations?: undefined;
231
+ });
197
232
  property: {
198
233
  total: number;
199
234
  totalUnique: number;
200
235
  uniquenessRatio: number;
201
236
  unique: Record<string, number>;
237
+ } & ({
202
238
  __unstable__uniqueWithLocations: Record<string, {
203
239
  line: number;
204
240
  column: number;
205
241
  offset: number;
206
242
  length: number;
207
243
  }[]>;
208
- };
244
+ } | {
245
+ __unstable__uniqueWithLocations?: undefined;
246
+ });
209
247
  total: number;
210
248
  complexity: {
211
249
  min: number;
@@ -233,18 +271,21 @@ export function analyze(css: string, options?: Options): {
233
271
  sum: number;
234
272
  } & {
235
273
  items: number[];
236
- } & {
274
+ } & ({
237
275
  total: number;
238
276
  totalUnique: number;
239
277
  uniquenessRatio: number;
240
278
  unique: Record<string, number>;
279
+ } & ({
241
280
  __unstable__uniqueWithLocations: Record<string, {
242
281
  line: number;
243
282
  column: number;
244
283
  offset: number;
245
284
  length: number;
246
285
  }[]>;
247
- };
286
+ } | {
287
+ __unstable__uniqueWithLocations?: undefined;
288
+ }));
248
289
  selectors: {
249
290
  min: number;
250
291
  max: number;
@@ -255,18 +296,21 @@ export function analyze(css: string, options?: Options): {
255
296
  sum: number;
256
297
  } & {
257
298
  items: number[];
258
- } & {
299
+ } & ({
259
300
  total: number;
260
301
  totalUnique: number;
261
302
  uniquenessRatio: number;
262
303
  unique: Record<string, number>;
304
+ } & ({
263
305
  __unstable__uniqueWithLocations: Record<string, {
264
306
  line: number;
265
307
  column: number;
266
308
  offset: number;
267
309
  length: number;
268
310
  }[]>;
269
- };
311
+ } | {
312
+ __unstable__uniqueWithLocations?: undefined;
313
+ }));
270
314
  declarations: {
271
315
  min: number;
272
316
  max: number;
@@ -277,18 +321,21 @@ export function analyze(css: string, options?: Options): {
277
321
  sum: number;
278
322
  } & {
279
323
  items: number[];
280
- } & {
324
+ } & ({
281
325
  total: number;
282
326
  totalUnique: number;
283
327
  uniquenessRatio: number;
284
328
  unique: Record<string, number>;
329
+ } & ({
285
330
  __unstable__uniqueWithLocations: Record<string, {
286
331
  line: number;
287
332
  column: number;
288
333
  offset: number;
289
334
  length: number;
290
335
  }[]>;
291
- };
336
+ } | {
337
+ __unstable__uniqueWithLocations?: undefined;
338
+ }));
292
339
  };
293
340
  selectors: {
294
341
  total: number;
@@ -308,18 +355,21 @@ export function analyze(css: string, options?: Options): {
308
355
  /** @type Specificity */
309
356
  median: Specificity;
310
357
  items: Specificity[];
311
- } & {
358
+ } & ({
312
359
  total: number;
313
360
  totalUnique: number;
314
361
  uniquenessRatio: number;
315
362
  unique: Record<string, number>;
363
+ } & ({
316
364
  __unstable__uniqueWithLocations: Record<string, {
317
365
  line: number;
318
366
  column: number;
319
367
  offset: number;
320
368
  length: number;
321
369
  }[]>;
322
- };
370
+ } | {
371
+ __unstable__uniqueWithLocations?: undefined;
372
+ }));
323
373
  complexity: {
324
374
  min: number;
325
375
  max: number;
@@ -328,46 +378,55 @@ export function analyze(css: string, options?: Options): {
328
378
  median: number;
329
379
  range: number;
330
380
  sum: number;
331
- } & {
381
+ } & ({
332
382
  total: number;
333
383
  totalUnique: number;
334
384
  uniquenessRatio: number;
335
385
  unique: Record<string, number>;
386
+ } & ({
336
387
  __unstable__uniqueWithLocations: Record<string, {
337
388
  line: number;
338
389
  column: number;
339
390
  offset: number;
340
391
  length: number;
341
392
  }[]>;
342
- } & {
393
+ } | {
394
+ __unstable__uniqueWithLocations?: undefined;
395
+ })) & {
343
396
  items: number[];
344
397
  };
345
- id: {
398
+ id: ({
346
399
  total: number;
347
400
  totalUnique: number;
348
401
  uniquenessRatio: number;
349
402
  unique: Record<string, number>;
403
+ } & ({
350
404
  __unstable__uniqueWithLocations: Record<string, {
351
405
  line: number;
352
406
  column: number;
353
407
  offset: number;
354
408
  length: number;
355
409
  }[]>;
356
- } & {
410
+ } | {
411
+ __unstable__uniqueWithLocations?: undefined;
412
+ })) & {
357
413
  ratio: number;
358
414
  };
359
- accessibility: {
415
+ accessibility: ({
360
416
  total: number;
361
417
  totalUnique: number;
362
418
  uniquenessRatio: number;
363
419
  unique: Record<string, number>;
420
+ } & ({
364
421
  __unstable__uniqueWithLocations: Record<string, {
365
422
  line: number;
366
423
  column: number;
367
424
  offset: number;
368
425
  length: number;
369
426
  }[]>;
370
- } & {
427
+ } | {
428
+ __unstable__uniqueWithLocations?: undefined;
429
+ })) & {
371
430
  ratio: number;
372
431
  };
373
432
  keyframes: {
@@ -375,25 +434,31 @@ export function analyze(css: string, options?: Options): {
375
434
  totalUnique: number;
376
435
  uniquenessRatio: number;
377
436
  unique: Record<string, number>;
437
+ } & ({
378
438
  __unstable__uniqueWithLocations: Record<string, {
379
439
  line: number;
380
440
  column: number;
381
441
  offset: number;
382
442
  length: number;
383
443
  }[]>;
384
- };
385
- prefixed: {
444
+ } | {
445
+ __unstable__uniqueWithLocations?: undefined;
446
+ });
447
+ prefixed: ({
386
448
  total: number;
387
449
  totalUnique: number;
388
450
  uniquenessRatio: number;
389
451
  unique: Record<string, number>;
452
+ } & ({
390
453
  __unstable__uniqueWithLocations: Record<string, {
391
454
  line: number;
392
455
  column: number;
393
456
  offset: number;
394
457
  length: number;
395
458
  }[]>;
396
- } & {
459
+ } | {
460
+ __unstable__uniqueWithLocations?: undefined;
461
+ })) & {
397
462
  ratio: number;
398
463
  };
399
464
  combinators: {
@@ -401,13 +466,16 @@ export function analyze(css: string, options?: Options): {
401
466
  totalUnique: number;
402
467
  uniquenessRatio: number;
403
468
  unique: Record<string, number>;
469
+ } & ({
404
470
  __unstable__uniqueWithLocations: Record<string, {
405
471
  line: number;
406
472
  column: number;
407
473
  offset: number;
408
474
  length: number;
409
475
  }[]>;
410
- };
476
+ } | {
477
+ __unstable__uniqueWithLocations?: undefined;
478
+ });
411
479
  };
412
480
  declarations: {
413
481
  total: number;
@@ -435,72 +503,87 @@ export function analyze(css: string, options?: Options): {
435
503
  sum: number;
436
504
  };
437
505
  };
438
- properties: {
506
+ properties: ({
439
507
  total: number;
440
508
  totalUnique: number;
441
509
  uniquenessRatio: number;
442
510
  unique: Record<string, number>;
511
+ } & ({
443
512
  __unstable__uniqueWithLocations: Record<string, {
444
513
  line: number;
445
514
  column: number;
446
515
  offset: number;
447
516
  length: number;
448
517
  }[]>;
449
- } & {
450
- prefixed: {
518
+ } | {
519
+ __unstable__uniqueWithLocations?: undefined;
520
+ })) & {
521
+ prefixed: ({
451
522
  total: number;
452
523
  totalUnique: number;
453
524
  uniquenessRatio: number;
454
525
  unique: Record<string, number>;
526
+ } & ({
455
527
  __unstable__uniqueWithLocations: Record<string, {
456
528
  line: number;
457
529
  column: number;
458
530
  offset: number;
459
531
  length: number;
460
532
  }[]>;
461
- } & {
533
+ } | {
534
+ __unstable__uniqueWithLocations?: undefined;
535
+ })) & {
462
536
  ratio: number;
463
537
  };
464
- custom: {
538
+ custom: ({
465
539
  total: number;
466
540
  totalUnique: number;
467
541
  uniquenessRatio: number;
468
542
  unique: Record<string, number>;
543
+ } & ({
469
544
  __unstable__uniqueWithLocations: Record<string, {
470
545
  line: number;
471
546
  column: number;
472
547
  offset: number;
473
548
  length: number;
474
549
  }[]>;
475
- } & {
550
+ } | {
551
+ __unstable__uniqueWithLocations?: undefined;
552
+ })) & {
476
553
  ratio: number;
477
- importants: {
554
+ importants: ({
478
555
  total: number;
479
556
  totalUnique: number;
480
557
  uniquenessRatio: number;
481
558
  unique: Record<string, number>;
559
+ } & ({
482
560
  __unstable__uniqueWithLocations: Record<string, {
483
561
  line: number;
484
562
  column: number;
485
563
  offset: number;
486
564
  length: number;
487
565
  }[]>;
488
- } & {
566
+ } | {
567
+ __unstable__uniqueWithLocations?: undefined;
568
+ })) & {
489
569
  ratio: number;
490
570
  };
491
571
  };
492
- browserhacks: {
572
+ browserhacks: ({
493
573
  total: number;
494
574
  totalUnique: number;
495
575
  uniquenessRatio: number;
496
576
  unique: Record<string, number>;
577
+ } & ({
497
578
  __unstable__uniqueWithLocations: Record<string, {
498
579
  line: number;
499
580
  column: number;
500
581
  offset: number;
501
582
  length: number;
502
583
  }[]>;
503
- } & {
584
+ } | {
585
+ __unstable__uniqueWithLocations?: undefined;
586
+ })) & {
504
587
  ratio: number;
505
588
  };
506
589
  complexity: {
@@ -514,18 +597,21 @@ export function analyze(css: string, options?: Options): {
514
597
  };
515
598
  };
516
599
  values: {
517
- colors: {
600
+ colors: (({
518
601
  total: number;
519
602
  totalUnique: number;
520
603
  uniquenessRatio: number;
521
604
  unique: Record<string, number>;
605
+ } & ({
522
606
  __unstable__uniqueWithLocations: Record<string, {
523
607
  line: number;
524
608
  column: number;
525
609
  offset: number;
526
610
  length: number;
527
611
  }[]>;
528
- } & {
612
+ } | {
613
+ __unstable__uniqueWithLocations?: undefined;
614
+ })) & {
529
615
  itemsPerContext: {
530
616
  [k: string]: {
531
617
  total: number;
@@ -534,166 +620,205 @@ export function analyze(css: string, options?: Options): {
534
620
  uniquenessRatio: number;
535
621
  };
536
622
  };
537
- } & {
623
+ }) & {
538
624
  formats: {
539
625
  total: number;
540
626
  totalUnique: number;
541
627
  uniquenessRatio: number;
542
628
  unique: Record<string, number>;
629
+ } & ({
543
630
  __unstable__uniqueWithLocations: Record<string, {
544
631
  line: number;
545
632
  column: number;
546
633
  offset: number;
547
634
  length: number;
548
635
  }[]>;
549
- };
636
+ } | {
637
+ __unstable__uniqueWithLocations?: undefined;
638
+ });
550
639
  };
551
640
  gradients: {
552
641
  total: number;
553
642
  totalUnique: number;
554
643
  uniquenessRatio: number;
555
644
  unique: Record<string, number>;
645
+ } & ({
556
646
  __unstable__uniqueWithLocations: Record<string, {
557
647
  line: number;
558
648
  column: number;
559
649
  offset: number;
560
650
  length: number;
561
651
  }[]>;
562
- };
652
+ } | {
653
+ __unstable__uniqueWithLocations?: undefined;
654
+ });
563
655
  fontFamilies: {
564
656
  total: number;
565
657
  totalUnique: number;
566
658
  uniquenessRatio: number;
567
659
  unique: Record<string, number>;
660
+ } & ({
568
661
  __unstable__uniqueWithLocations: Record<string, {
569
662
  line: number;
570
663
  column: number;
571
664
  offset: number;
572
665
  length: number;
573
666
  }[]>;
574
- };
667
+ } | {
668
+ __unstable__uniqueWithLocations?: undefined;
669
+ });
575
670
  fontSizes: {
576
671
  total: number;
577
672
  totalUnique: number;
578
673
  uniquenessRatio: number;
579
674
  unique: Record<string, number>;
675
+ } & ({
580
676
  __unstable__uniqueWithLocations: Record<string, {
581
677
  line: number;
582
678
  column: number;
583
679
  offset: number;
584
680
  length: number;
585
681
  }[]>;
586
- };
682
+ } | {
683
+ __unstable__uniqueWithLocations?: undefined;
684
+ });
587
685
  lineHeights: {
588
686
  total: number;
589
687
  totalUnique: number;
590
688
  uniquenessRatio: number;
591
689
  unique: Record<string, number>;
690
+ } & ({
592
691
  __unstable__uniqueWithLocations: Record<string, {
593
692
  line: number;
594
693
  column: number;
595
694
  offset: number;
596
695
  length: number;
597
696
  }[]>;
598
- };
697
+ } | {
698
+ __unstable__uniqueWithLocations?: undefined;
699
+ });
599
700
  zindexes: {
600
701
  total: number;
601
702
  totalUnique: number;
602
703
  uniquenessRatio: number;
603
704
  unique: Record<string, number>;
705
+ } & ({
604
706
  __unstable__uniqueWithLocations: Record<string, {
605
707
  line: number;
606
708
  column: number;
607
709
  offset: number;
608
710
  length: number;
609
711
  }[]>;
610
- };
712
+ } | {
713
+ __unstable__uniqueWithLocations?: undefined;
714
+ });
611
715
  textShadows: {
612
716
  total: number;
613
717
  totalUnique: number;
614
718
  uniquenessRatio: number;
615
719
  unique: Record<string, number>;
720
+ } & ({
616
721
  __unstable__uniqueWithLocations: Record<string, {
617
722
  line: number;
618
723
  column: number;
619
724
  offset: number;
620
725
  length: number;
621
726
  }[]>;
622
- };
727
+ } | {
728
+ __unstable__uniqueWithLocations?: undefined;
729
+ });
623
730
  boxShadows: {
624
731
  total: number;
625
732
  totalUnique: number;
626
733
  uniquenessRatio: number;
627
734
  unique: Record<string, number>;
735
+ } & ({
628
736
  __unstable__uniqueWithLocations: Record<string, {
629
737
  line: number;
630
738
  column: number;
631
739
  offset: number;
632
740
  length: number;
633
741
  }[]>;
634
- };
742
+ } | {
743
+ __unstable__uniqueWithLocations?: undefined;
744
+ });
635
745
  animations: {
636
746
  durations: {
637
747
  total: number;
638
748
  totalUnique: number;
639
749
  uniquenessRatio: number;
640
750
  unique: Record<string, number>;
751
+ } & ({
641
752
  __unstable__uniqueWithLocations: Record<string, {
642
753
  line: number;
643
754
  column: number;
644
755
  offset: number;
645
756
  length: number;
646
757
  }[]>;
647
- };
758
+ } | {
759
+ __unstable__uniqueWithLocations?: undefined;
760
+ });
648
761
  timingFunctions: {
649
762
  total: number;
650
763
  totalUnique: number;
651
764
  uniquenessRatio: number;
652
765
  unique: Record<string, number>;
766
+ } & ({
653
767
  __unstable__uniqueWithLocations: Record<string, {
654
768
  line: number;
655
769
  column: number;
656
770
  offset: number;
657
771
  length: number;
658
772
  }[]>;
659
- };
773
+ } | {
774
+ __unstable__uniqueWithLocations?: undefined;
775
+ });
660
776
  };
661
777
  prefixes: {
662
778
  total: number;
663
779
  totalUnique: number;
664
780
  uniquenessRatio: number;
665
781
  unique: Record<string, number>;
782
+ } & ({
666
783
  __unstable__uniqueWithLocations: Record<string, {
667
784
  line: number;
668
785
  column: number;
669
786
  offset: number;
670
787
  length: number;
671
788
  }[]>;
672
- };
789
+ } | {
790
+ __unstable__uniqueWithLocations?: undefined;
791
+ });
673
792
  browserhacks: {
674
793
  total: number;
675
794
  totalUnique: number;
676
795
  uniquenessRatio: number;
677
796
  unique: Record<string, number>;
797
+ } & ({
678
798
  __unstable__uniqueWithLocations: Record<string, {
679
799
  line: number;
680
800
  column: number;
681
801
  offset: number;
682
802
  length: number;
683
803
  }[]>;
684
- };
685
- units: {
804
+ } | {
805
+ __unstable__uniqueWithLocations?: undefined;
806
+ });
807
+ units: ({
686
808
  total: number;
687
809
  totalUnique: number;
688
810
  uniquenessRatio: number;
689
811
  unique: Record<string, number>;
812
+ } & ({
690
813
  __unstable__uniqueWithLocations: Record<string, {
691
814
  line: number;
692
815
  column: number;
693
816
  offset: number;
694
817
  length: number;
695
818
  }[]>;
696
- } & {
819
+ } | {
820
+ __unstable__uniqueWithLocations?: undefined;
821
+ })) & {
697
822
  itemsPerContext: {
698
823
  [k: string]: {
699
824
  total: number;
@@ -712,6 +837,21 @@ export function analyze(css: string, options?: Options): {
712
837
  range: number;
713
838
  sum: number;
714
839
  };
840
+ keywords: {
841
+ total: number;
842
+ totalUnique: number;
843
+ uniquenessRatio: number;
844
+ unique: Record<string, number>;
845
+ } & ({
846
+ __unstable__uniqueWithLocations: Record<string, {
847
+ line: number;
848
+ column: number;
849
+ offset: number;
850
+ length: number;
851
+ }[]>;
852
+ } | {
853
+ __unstable__uniqueWithLocations?: undefined;
854
+ });
715
855
  };
716
856
  __meta__: {
717
857
  parseTime: number;