forked from woocommerce/woocommerce-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkstyle.xml
4167 lines (4167 loc) · 682 KB
/
checkstyle.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<checkstyle version="4.3">
<file name="assets/js/global.d.ts">
<error line="2" column="13" severity="error" message="Cannot redeclare block-scoped variable '__webpack_public_path__'." source="TS2451" />
</file>
<file name="node_modules/@types/react/index.d.ts">
<error line="3077" column="19" severity="error" message="Interface 'ElementClass' cannot simultaneously extend types 'Component<any, {}, any>' and 'Component<any, {}, any>'.
Named property 'props' of types 'Component<any, {}, any>' and 'Component<any, {}, any>' are not identical." source="TS2320" />
<error line="3085" column="14" severity="error" message="Duplicate identifier 'LibraryManagedAttributes'." source="TS2300" />
</file>
<file name="assets/js/icons/library/woo.tsx">
<error line="6" column="23" severity="error" message="Binding element 'className' implicitly has an 'any' type." source="TS7031" />
<error line="6" column="34" severity="error" message="Binding element 'height' implicitly has an 'any' type." source="TS7031" />
<error line="6" column="42" severity="error" message="Binding element 'width' implicitly has an 'any' type." source="TS7031" />
<error line="29" column="14" severity="error" message="Type '{}' is missing the following properties from type '{ [x: string]: any; className: any; height: any; width: any; }': className, height, width" source="TS2739" />
</file>
<file name="node_modules/@wordpress/element/node_modules/@types/react/index.d.ts">
<error line="3086" column="14" severity="error" message="Duplicate identifier 'LibraryManagedAttributes'." source="TS2300" />
<error line="3099" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'a' must be of type 'DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>', but here has type 'DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>'." source="TS2717" />
<error line="3100" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'abbr' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3101" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'address' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3102" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'area' must be of type 'DetailedHTMLProps<AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>', but here has type 'DetailedHTMLProps<AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>'." source="TS2717" />
<error line="3103" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'article' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3104" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'aside' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3105" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'audio' must be of type 'DetailedHTMLProps<AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>', but here has type 'DetailedHTMLProps<AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>'." source="TS2717" />
<error line="3106" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'b' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3107" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'base' must be of type 'DetailedHTMLProps<BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>', but here has type 'DetailedHTMLProps<BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>'." source="TS2717" />
<error line="3108" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'bdi' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3109" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'bdo' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3110" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'big' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3111" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'blockquote' must be of type 'DetailedHTMLProps<BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>', but here has type 'DetailedHTMLProps<BlockquoteHTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3112" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'body' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>'." source="TS2717" />
<error line="3113" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'br' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLBRElement>, HTMLBRElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLBRElement>, HTMLBRElement>'." source="TS2717" />
<error line="3114" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'button' must be of type 'DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>', but here has type 'DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>'." source="TS2717" />
<error line="3115" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'canvas' must be of type 'DetailedHTMLProps<CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>', but here has type 'DetailedHTMLProps<CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>'." source="TS2717" />
<error line="3116" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'caption' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3117" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'cite' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3118" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'code' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3119" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'col' must be of type 'DetailedHTMLProps<ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>', but here has type 'DetailedHTMLProps<ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>'." source="TS2717" />
<error line="3120" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'colgroup' must be of type 'DetailedHTMLProps<ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>', but here has type 'DetailedHTMLProps<ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>'." source="TS2717" />
<error line="3121" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'data' must be of type 'DetailedHTMLProps<DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>', but here has type 'DetailedHTMLProps<DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>'." source="TS2717" />
<error line="3122" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'datalist' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>'." source="TS2717" />
<error line="3123" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'dd' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3124" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'del' must be of type 'DetailedHTMLProps<DelHTMLAttributes<HTMLModElement>, HTMLModElement>', but here has type 'DetailedHTMLProps<DelHTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3125" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'details' must be of type 'DetailedHTMLProps<DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>', but here has type 'DetailedHTMLProps<DetailsHTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3126" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'dfn' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3127" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'dialog' must be of type 'DetailedHTMLProps<DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>', but here has type 'DetailedHTMLProps<DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>'." source="TS2717" />
<error line="3128" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'div' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>'." source="TS2717" />
<error line="3129" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'dl' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLDListElement>, HTMLDListElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLDListElement>, HTMLDListElement>'." source="TS2717" />
<error line="3130" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'dt' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3131" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'em' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3132" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'embed' must be of type 'DetailedHTMLProps<EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>', but here has type 'DetailedHTMLProps<EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>'." source="TS2717" />
<error line="3133" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'fieldset' must be of type 'DetailedHTMLProps<FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>', but here has type 'DetailedHTMLProps<FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>'." source="TS2717" />
<error line="3134" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'figcaption' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3135" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'figure' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3136" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'footer' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3137" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'form' must be of type 'DetailedHTMLProps<FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>', but here has type 'DetailedHTMLProps<FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>'." source="TS2717" />
<error line="3138" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'h1' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'." source="TS2717" />
<error line="3139" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'h2' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'." source="TS2717" />
<error line="3140" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'h3' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'." source="TS2717" />
<error line="3141" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'h4' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'." source="TS2717" />
<error line="3142" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'h5' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'." source="TS2717" />
<error line="3143" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'h6' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'." source="TS2717" />
<error line="3144" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'head' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>'." source="TS2717" />
<error line="3145" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'header' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3146" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'hgroup' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3147" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'hr' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHRElement>, HTMLHRElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHRElement>, HTMLHRElement>'." source="TS2717" />
<error line="3148" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'html' must be of type 'DetailedHTMLProps<HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>', but here has type 'DetailedHTMLProps<HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>'." source="TS2717" />
<error line="3149" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'i' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3150" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'iframe' must be of type 'DetailedHTMLProps<IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>', but here has type 'DetailedHTMLProps<IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>'." source="TS2717" />
<error line="3151" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'img' must be of type 'DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>', but here has type 'DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>'." source="TS2717" />
<error line="3152" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'input' must be of type 'DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>', but here has type 'DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>'." source="TS2717" />
<error line="3153" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'ins' must be of type 'DetailedHTMLProps<InsHTMLAttributes<HTMLModElement>, HTMLModElement>', but here has type 'DetailedHTMLProps<InsHTMLAttributes<HTMLModElement>, HTMLModElement>'." source="TS2717" />
<error line="3154" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'kbd' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3155" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'keygen' must be of type 'DetailedHTMLProps<KeygenHTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<KeygenHTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3156" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'label' must be of type 'DetailedHTMLProps<LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>', but here has type 'DetailedHTMLProps<LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>'." source="TS2717" />
<error line="3157" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'legend' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>'." source="TS2717" />
<error line="3158" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'li' must be of type 'DetailedHTMLProps<LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>', but here has type 'DetailedHTMLProps<LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>'." source="TS2717" />
<error line="3159" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'link' must be of type 'DetailedHTMLProps<LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>', but here has type 'DetailedHTMLProps<LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>'." source="TS2717" />
<error line="3160" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'main' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3161" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'map' must be of type 'DetailedHTMLProps<MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>', but here has type 'DetailedHTMLProps<MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>'." source="TS2717" />
<error line="3162" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'mark' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3163" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'menu' must be of type 'DetailedHTMLProps<MenuHTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<MenuHTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3164" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'menuitem' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3165" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'meta' must be of type 'DetailedHTMLProps<MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>', but here has type 'DetailedHTMLProps<MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>'." source="TS2717" />
<error line="3166" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'meter' must be of type 'DetailedHTMLProps<MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>', but here has type 'DetailedHTMLProps<MeterHTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3167" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'nav' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3168" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'noindex' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3169" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'noscript' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3170" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'object' must be of type 'DetailedHTMLProps<ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>', but here has type 'DetailedHTMLProps<ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>'." source="TS2717" />
<error line="3171" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'ol' must be of type 'DetailedHTMLProps<OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>', but here has type 'DetailedHTMLProps<OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>'." source="TS2717" />
<error line="3172" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'optgroup' must be of type 'DetailedHTMLProps<OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>', but here has type 'DetailedHTMLProps<OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>'." source="TS2717" />
<error line="3173" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'option' must be of type 'DetailedHTMLProps<OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>', but here has type 'DetailedHTMLProps<OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>'." source="TS2717" />
<error line="3174" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'output' must be of type 'DetailedHTMLProps<OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>', but here has type 'DetailedHTMLProps<OutputHTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3175" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'p' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>'." source="TS2717" />
<error line="3176" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'param' must be of type 'DetailedHTMLProps<ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>', but here has type 'DetailedHTMLProps<ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>'." source="TS2717" />
<error line="3177" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'picture' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3178" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'pre' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLPreElement>, HTMLPreElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLPreElement>, HTMLPreElement>'." source="TS2717" />
<error line="3179" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'progress' must be of type 'DetailedHTMLProps<ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>', but here has type 'DetailedHTMLProps<ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>'." source="TS2717" />
<error line="3180" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'q' must be of type 'DetailedHTMLProps<QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>', but here has type 'DetailedHTMLProps<QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>'." source="TS2717" />
<error line="3181" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'rp' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3182" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'rt' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3183" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'ruby' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3184" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 's' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3185" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'samp' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3186" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'slot' must be of type 'DetailedHTMLProps<SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>', but here has type 'DetailedHTMLProps<SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>'." source="TS2717" />
<error line="3187" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'script' must be of type 'DetailedHTMLProps<ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>', but here has type 'DetailedHTMLProps<ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>'." source="TS2717" />
<error line="3188" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'section' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3189" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'select' must be of type 'DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>', but here has type 'DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>'." source="TS2717" />
<error line="3190" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'small' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3191" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'source' must be of type 'DetailedHTMLProps<SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>', but here has type 'DetailedHTMLProps<SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>'." source="TS2717" />
<error line="3192" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'span' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>'." source="TS2717" />
<error line="3193" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'strong' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3194" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'style' must be of type 'DetailedHTMLProps<StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>', but here has type 'DetailedHTMLProps<StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>'." source="TS2717" />
<error line="3195" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'sub' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3196" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'summary' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3197" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'sup' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3198" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'table' must be of type 'DetailedHTMLProps<TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>', but here has type 'DetailedHTMLProps<TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>'." source="TS2717" />
<error line="3199" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'template' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>'." source="TS2717" />
<error line="3200" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'tbody' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>'." source="TS2717" />
<error line="3201" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'td' must be of type 'DetailedHTMLProps<TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>', but here has type 'DetailedHTMLProps<TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>'." source="TS2717" />
<error line="3202" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'textarea' must be of type 'DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>', but here has type 'DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>'." source="TS2717" />
<error line="3203" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'tfoot' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>'." source="TS2717" />
<error line="3204" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'th' must be of type 'DetailedHTMLProps<ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>', but here has type 'DetailedHTMLProps<ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>'." source="TS2717" />
<error line="3205" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'thead' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>'." source="TS2717" />
<error line="3206" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'time' must be of type 'DetailedHTMLProps<TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>', but here has type 'DetailedHTMLProps<TimeHTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3207" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'title' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>'." source="TS2717" />
<error line="3208" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'tr' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>'." source="TS2717" />
<error line="3209" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'track' must be of type 'DetailedHTMLProps<TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>', but here has type 'DetailedHTMLProps<TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>'." source="TS2717" />
<error line="3210" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'u' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3211" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'ul' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLUListElement>, HTMLUListElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLUListElement>, HTMLUListElement>'." source="TS2717" />
<error line="3212" column="13" severity="error" message="Subsequent property declarations must have the same type. Property '"var"' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3213" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'video' must be of type 'DetailedHTMLProps<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>', but here has type 'DetailedHTMLProps<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>'." source="TS2717" />
<error line="3214" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'wbr' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'." source="TS2717" />
<error line="3215" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'webview' must be of type 'DetailedHTMLProps<WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>', but here has type 'DetailedHTMLProps<WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>'." source="TS2717" />
<error line="3218" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'svg' must be of type 'SVGProps<SVGSVGElement>', but here has type 'SVGProps<SVGSVGElement>'." source="TS2717" />
<error line="3220" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'animate' must be of type 'SVGProps<SVGElement>', but here has type 'SVGProps<SVGElement>'." source="TS2717" />
<error line="3221" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'animateMotion' must be of type 'SVGProps<SVGElement>', but here has type 'SVGProps<SVGElement>'." source="TS2717" />
<error line="3222" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'animateTransform' must be of type 'SVGProps<SVGElement>', but here has type 'SVGProps<SVGElement>'." source="TS2717" />
<error line="3223" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'circle' must be of type 'SVGProps<SVGCircleElement>', but here has type 'SVGProps<SVGCircleElement>'." source="TS2717" />
<error line="3224" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'clipPath' must be of type 'SVGProps<SVGClipPathElement>', but here has type 'SVGProps<SVGClipPathElement>'." source="TS2717" />
<error line="3225" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'defs' must be of type 'SVGProps<SVGDefsElement>', but here has type 'SVGProps<SVGDefsElement>'." source="TS2717" />
<error line="3226" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'desc' must be of type 'SVGProps<SVGDescElement>', but here has type 'SVGProps<SVGDescElement>'." source="TS2717" />
<error line="3227" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'ellipse' must be of type 'SVGProps<SVGEllipseElement>', but here has type 'SVGProps<SVGEllipseElement>'." source="TS2717" />
<error line="3228" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feBlend' must be of type 'SVGProps<SVGFEBlendElement>', but here has type 'SVGProps<SVGFEBlendElement>'." source="TS2717" />
<error line="3229" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feColorMatrix' must be of type 'SVGProps<SVGFEColorMatrixElement>', but here has type 'SVGProps<SVGFEColorMatrixElement>'." source="TS2717" />
<error line="3230" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feComponentTransfer' must be of type 'SVGProps<SVGFEComponentTransferElement>', but here has type 'SVGProps<SVGFEComponentTransferElement>'." source="TS2717" />
<error line="3231" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feComposite' must be of type 'SVGProps<SVGFECompositeElement>', but here has type 'SVGProps<SVGFECompositeElement>'." source="TS2717" />
<error line="3232" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feConvolveMatrix' must be of type 'SVGProps<SVGFEConvolveMatrixElement>', but here has type 'SVGProps<SVGFEConvolveMatrixElement>'." source="TS2717" />
<error line="3233" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feDiffuseLighting' must be of type 'SVGProps<SVGFEDiffuseLightingElement>', but here has type 'SVGProps<SVGFEDiffuseLightingElement>'." source="TS2717" />
<error line="3234" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feDisplacementMap' must be of type 'SVGProps<SVGFEDisplacementMapElement>', but here has type 'SVGProps<SVGFEDisplacementMapElement>'." source="TS2717" />
<error line="3235" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feDistantLight' must be of type 'SVGProps<SVGFEDistantLightElement>', but here has type 'SVGProps<SVGFEDistantLightElement>'." source="TS2717" />
<error line="3236" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feDropShadow' must be of type 'SVGProps<SVGFEDropShadowElement>', but here has type 'SVGProps<SVGFEDropShadowElement>'." source="TS2717" />
<error line="3237" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feFlood' must be of type 'SVGProps<SVGFEFloodElement>', but here has type 'SVGProps<SVGFEFloodElement>'." source="TS2717" />
<error line="3238" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feFuncA' must be of type 'SVGProps<SVGFEFuncAElement>', but here has type 'SVGProps<SVGFEFuncAElement>'." source="TS2717" />
<error line="3239" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feFuncB' must be of type 'SVGProps<SVGFEFuncBElement>', but here has type 'SVGProps<SVGFEFuncBElement>'." source="TS2717" />
<error line="3240" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feFuncG' must be of type 'SVGProps<SVGFEFuncGElement>', but here has type 'SVGProps<SVGFEFuncGElement>'." source="TS2717" />
<error line="3241" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feFuncR' must be of type 'SVGProps<SVGFEFuncRElement>', but here has type 'SVGProps<SVGFEFuncRElement>'." source="TS2717" />
<error line="3242" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feGaussianBlur' must be of type 'SVGProps<SVGFEGaussianBlurElement>', but here has type 'SVGProps<SVGFEGaussianBlurElement>'." source="TS2717" />
<error line="3243" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feImage' must be of type 'SVGProps<SVGFEImageElement>', but here has type 'SVGProps<SVGFEImageElement>'." source="TS2717" />
<error line="3244" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feMerge' must be of type 'SVGProps<SVGFEMergeElement>', but here has type 'SVGProps<SVGFEMergeElement>'." source="TS2717" />
<error line="3245" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feMergeNode' must be of type 'SVGProps<SVGFEMergeNodeElement>', but here has type 'SVGProps<SVGFEMergeNodeElement>'." source="TS2717" />
<error line="3246" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feMorphology' must be of type 'SVGProps<SVGFEMorphologyElement>', but here has type 'SVGProps<SVGFEMorphologyElement>'." source="TS2717" />
<error line="3247" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feOffset' must be of type 'SVGProps<SVGFEOffsetElement>', but here has type 'SVGProps<SVGFEOffsetElement>'." source="TS2717" />
<error line="3248" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'fePointLight' must be of type 'SVGProps<SVGFEPointLightElement>', but here has type 'SVGProps<SVGFEPointLightElement>'." source="TS2717" />
<error line="3249" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feSpecularLighting' must be of type 'SVGProps<SVGFESpecularLightingElement>', but here has type 'SVGProps<SVGFESpecularLightingElement>'." source="TS2717" />
<error line="3250" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feSpotLight' must be of type 'SVGProps<SVGFESpotLightElement>', but here has type 'SVGProps<SVGFESpotLightElement>'." source="TS2717" />
<error line="3251" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feTile' must be of type 'SVGProps<SVGFETileElement>', but here has type 'SVGProps<SVGFETileElement>'." source="TS2717" />
<error line="3252" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'feTurbulence' must be of type 'SVGProps<SVGFETurbulenceElement>', but here has type 'SVGProps<SVGFETurbulenceElement>'." source="TS2717" />
<error line="3253" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'filter' must be of type 'SVGProps<SVGFilterElement>', but here has type 'SVGProps<SVGFilterElement>'." source="TS2717" />
<error line="3254" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'foreignObject' must be of type 'SVGProps<SVGForeignObjectElement>', but here has type 'SVGProps<SVGForeignObjectElement>'." source="TS2717" />
<error line="3255" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'g' must be of type 'SVGProps<SVGGElement>', but here has type 'SVGProps<SVGGElement>'." source="TS2717" />
<error line="3256" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'image' must be of type 'SVGProps<SVGImageElement>', but here has type 'SVGProps<SVGImageElement>'." source="TS2717" />
<error line="3257" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'line' must be of type 'SVGProps<SVGLineElement>', but here has type 'SVGProps<SVGLineElement>'." source="TS2717" />
<error line="3258" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'linearGradient' must be of type 'SVGProps<SVGLinearGradientElement>', but here has type 'SVGProps<SVGLinearGradientElement>'." source="TS2717" />
<error line="3259" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'marker' must be of type 'SVGProps<SVGMarkerElement>', but here has type 'SVGProps<SVGMarkerElement>'." source="TS2717" />
<error line="3260" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'mask' must be of type 'SVGProps<SVGMaskElement>', but here has type 'SVGProps<SVGMaskElement>'." source="TS2717" />
<error line="3261" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'metadata' must be of type 'SVGProps<SVGMetadataElement>', but here has type 'SVGProps<SVGMetadataElement>'." source="TS2717" />
<error line="3262" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'mpath' must be of type 'SVGProps<SVGElement>', but here has type 'SVGProps<SVGElement>'." source="TS2717" />
<error line="3263" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'path' must be of type 'SVGProps<SVGPathElement>', but here has type 'SVGProps<SVGPathElement>'." source="TS2717" />
<error line="3264" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'pattern' must be of type 'SVGProps<SVGPatternElement>', but here has type 'SVGProps<SVGPatternElement>'." source="TS2717" />
<error line="3265" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'polygon' must be of type 'SVGProps<SVGPolygonElement>', but here has type 'SVGProps<SVGPolygonElement>'." source="TS2717" />
<error line="3266" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'polyline' must be of type 'SVGProps<SVGPolylineElement>', but here has type 'SVGProps<SVGPolylineElement>'." source="TS2717" />
<error line="3267" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'radialGradient' must be of type 'SVGProps<SVGRadialGradientElement>', but here has type 'SVGProps<SVGRadialGradientElement>'." source="TS2717" />
<error line="3268" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'rect' must be of type 'SVGProps<SVGRectElement>', but here has type 'SVGProps<SVGRectElement>'." source="TS2717" />
<error line="3269" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'stop' must be of type 'SVGProps<SVGStopElement>', but here has type 'SVGProps<SVGStopElement>'." source="TS2717" />
<error line="3270" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'switch' must be of type 'SVGProps<SVGSwitchElement>', but here has type 'SVGProps<SVGSwitchElement>'." source="TS2717" />
<error line="3271" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'symbol' must be of type 'SVGProps<SVGSymbolElement>', but here has type 'SVGProps<SVGSymbolElement>'." source="TS2717" />
<error line="3272" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'text' must be of type 'SVGProps<SVGTextElement>', but here has type 'SVGProps<SVGTextElement>'." source="TS2717" />
<error line="3273" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'textPath' must be of type 'SVGProps<SVGTextPathElement>', but here has type 'SVGProps<SVGTextPathElement>'." source="TS2717" />
<error line="3274" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'tspan' must be of type 'SVGProps<SVGTSpanElement>', but here has type 'SVGProps<SVGTSpanElement>'." source="TS2717" />
<error line="3275" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'use' must be of type 'SVGProps<SVGUseElement>', but here has type 'SVGProps<SVGUseElement>'." source="TS2717" />
<error line="3276" column="13" severity="error" message="Subsequent property declarations must have the same type. Property 'view' must be of type 'SVGProps<SVGViewElement>', but here has type 'SVGProps<SVGViewElement>'." source="TS2717" />
</file>
<file name="assets/js/filters/block-list-block.js">
<error line="43" column="13" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="44" column="13" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="44" column="23" severity="error" message="Property 'defaults' does not exist on type 'Block<Record<string, any>>'." source="TS2339" />
<error line="50" column="19" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="53" column="15" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="53" column="25" severity="error" message="Property 'defaults' does not exist on type 'Block<Record<string, any>>'." source="TS2339" />
<error line="55" column="28" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="55" column="38" severity="error" message="Property 'defaults' does not exist on type 'Block<Record<string, any>>'." source="TS2339" />
<error line="65" column="7" severity="error" message="Type '{ attributes: any; children?: ReactNode; }' is not assignable to type 'InnerProps'.
'{ attributes: any; children?: ReactNode; }' is assignable to the constraint of type 'InnerProps', but 'InnerProps' could be instantiated with a different subtype of constraint '{}'." source="TS2322" />
</file>
<file name="assets/js/filters/get-block-attributes.js">
<error line="15" column="17" severity="error" message="Property 'name' does not exist on type 'Object'." source="TS2339" />
<error line="16" column="26" severity="error" message="Property 'attributes' does not exist on type 'Object'." source="TS2339" />
<error line="18" column="12" severity="error" message="Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'Object'.
No index signature with a parameter of type 'string' was found on type 'Object'." source="TS7053" />
<error line="19" column="22" severity="error" message="Property 'defaults' does not exist on type 'Object'." source="TS2339" />
<error line="20" column="22" severity="error" message="Property 'defaults' does not exist on type 'Object'." source="TS2339" />
<error line="22" column="5" severity="error" message="Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'Object'.
No index signature with a parameter of type 'string' was found on type 'Object'." source="TS7053" />
<error line="22" column="40" severity="error" message="Property 'defaults' does not exist on type 'Object'." source="TS2339" />
</file>
<file name="assets/js/filters/exclude-draft-status-from-analytics.js">
<error line="10" column="33" severity="error" message="Parameter 'optionsGroup' implicitly has an 'any' type." source="TS7006" />
<error line="15" column="9" severity="error" message="Parameter 'option' implicitly has an 'any' type." source="TS7006" />
</file>
<file name="assets/js/blocks-registry/payment-methods/payment-method-config.tsx">
<error line="48" column="3" severity="error" message="Type 'string | undefined' is not assignable to type 'string' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target.
Type 'undefined' is not assignable to type 'string'." source="TS2412" />
</file>
<file name="assets/js/settings/blocks/feature-flags.ts">
<error line="22" column="29" severity="error" message="No overload matches this call.
Overload 1 of 2, '(metadata: BlockConfiguration<{}>, settings?: Partial<BlockConfiguration<{}>> | undefined): Block<{}> | undefined', gave the following error.
Argument of type 'string | BlockConfiguration<{}>' is not assignable to parameter of type 'BlockConfiguration<{}>'.
Type 'string' is not assignable to type 'BlockConfiguration<{}>'.
Type 'string' is not assignable to type 'Pick<Block<{}>, "title" | "category" | "attributes">'.
Overload 2 of 2, '(name: string, settings: BlockConfiguration<{}>): Block<{}> | undefined', gave the following error.
Argument of type 'string | BlockConfiguration<{}>' is not assignable to parameter of type 'string'.
Type 'BlockConfiguration<{}>' is not assignable to type 'string'." source="TS2769" />
<error line="36" column="29" severity="error" message="No overload matches this call.
Overload 1 of 2, '(metadata: BlockConfiguration<{}>, settings?: Partial<BlockConfiguration<{}>> | undefined): Block<{}> | undefined', gave the following error.
Argument of type 'string | BlockConfiguration<{}>' is not assignable to parameter of type 'BlockConfiguration<{}>'.
Type 'string' is not assignable to type 'BlockConfiguration<{}>'.
Overload 2 of 2, '(name: string, settings: BlockConfiguration<{}>): Block<{}> | undefined', gave the following error.
Argument of type 'string | BlockConfiguration<{}>' is not assignable to parameter of type 'string'.
Type 'BlockConfiguration<{}>' is not assignable to type 'string'." source="TS2769" />
</file>
<file name="assets/js/base/components/formatted-monetary-amount/index.tsx">
<error line="75" column="35" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="88" column="30" severity="error" message="Argument of type 'Currency | Record<string, never> | undefined' is not assignable to parameter of type 'Currency | Record<string, never>'.
Type 'undefined' is not assignable to type 'Currency | Record<string, never>'." source="TS2345" />
<error line="97" column="50" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
</file>
<file name="packages/prices/utils/index.js">
<error line="1" column="15" severity="error" message="File '/home/runner/work/woocommerce-blocks/woocommerce-blocks/packages/prices/utils/price.ts' is not listed within the file list of project '/home/runner/work/woocommerce-blocks/woocommerce-blocks/tsconfig.json'. Projects must list all files or use an 'include' pattern." source="TS6307" />
</file>
<file name="packages/prices/index.js">
<error line="1" column="15" severity="error" message="File '/home/runner/work/woocommerce-blocks/woocommerce-blocks/packages/prices/utils/index.js' is not listed within the file list of project '/home/runner/work/woocommerce-blocks/woocommerce-blocks/tsconfig.json'. Projects must list all files or use an 'include' pattern." source="TS6307" />
</file>
<file name="packages/checkout/components/totals/item/index.tsx">
<error line="8" column="15" severity="error" message="Module '"@woocommerce/price-format"' has no exported member 'Currency'." source="TS2305" />
<error line="8" column="31" severity="error" message="File '/home/runner/work/woocommerce-blocks/woocommerce-blocks/packages/prices/index.js' is not listed within the file list of project '/home/runner/work/woocommerce-blocks/woocommerce-blocks/tsconfig.json'. Projects must list all files or use an 'include' pattern.
The file is in the program because:
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/packages/checkout/components/totals/item/index.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/packages/checkout/components/totals/subtotal/index.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/packages/checkout/components/totals/taxes/index.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/packages/checkout/components/totals/fees/index.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/base/components/product-price/index.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/use-payment-method-interface.ts'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary/order-summary-item.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/base/components/cart-checkout/product-sale-badge/index.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control-package/render-package-rate-option.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/index.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/active-filters/utils.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/cart/cart-line-items-table/cart-line-item-row.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/edit.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/frontend.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/edit.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/frontend.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/price-filter/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/mini-cart/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-footer-block/block.tsx'
Imported via '@woocommerce/price-format' from file '/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/blocks/mini-cart/edit.tsx'" source="TS6307" />
</file>
<file name="packages/checkout/components/totals/subtotal/index.tsx">
<error line="5" column="15" severity="error" message="Module '"@woocommerce/price-format"' has no exported member 'Currency'." source="TS2305" />
<error line="35" column="4" severity="error" message="Type '{ className: string | undefined; currency: Currency; label: string; value: number; }' is not assignable to type 'TotalsItemProps' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.
Types of property 'className' are incompatible.
Type 'string | undefined' is not assignable to type 'string'.
Type 'undefined' is not assignable to type 'string'." source="TS2375" />
</file>
<file name="packages/checkout/components/totals/taxes/index.tsx">
<error line="7" column="15" severity="error" message="Module '"@woocommerce/price-format"' has no exported member 'Currency'." source="TS2305" />
</file>
<file name="packages/checkout/components/totals/fees/index.tsx">
<error line="7" column="15" severity="error" message="Module '"@woocommerce/price-format"' has no exported member 'Currency'." source="TS2305" />
</file>
<file name="packages/checkout/components/error-boundary/index.js">
<error line="9" column="35" severity="error" message="Parameter 'error' implicitly has an 'any' type." source="TS7006" />
</file>
<file name="packages/checkout/slot/index.js">
<error line="11" column="8" severity="error" message="Could not find a declaration file for module 'wordpress-components'. '/home/runner/work/woocommerce-blocks/woocommerce-blocks/node_modules/wordpress-components/build/index.js' implicitly has an 'any' type.
If the '@wordpress/components' package actually exposes this module, consider sending a pull request to amend 'https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/wordpress__components'" source="TS7016" />
<error line="42" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="83" column="13" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="87" column="8" severity="error" message="Parameter 'fillProps' implicitly has an 'any' type." source="TS7006" />
</file>
<file name="packages/checkout/components/order-meta/index.js">
<error line="9" column="41" severity="error" message="Variable 'useSlot' implicitly has type 'any' in some locations where its type cannot be determined." source="TS7034" />
<error line="14" column="9" severity="error" message="Property 'Fill' does not exist on type 'Object'." source="TS2339" />
<error line="14" column="38" severity="error" message="Property 'Slot' does not exist on type 'Object'." source="TS2339" />
<error line="17" column="18" severity="error" message="Binding element 'className' implicitly has an 'any' type." source="TS7031" />
<error line="17" column="29" severity="error" message="Binding element 'extensions' implicitly has an 'any' type." source="TS7031" />
<error line="17" column="41" severity="error" message="Binding element 'cart' implicitly has an 'any' type." source="TS7031" />
<error line="17" column="47" severity="error" message="Binding element 'context' implicitly has an 'any' type." source="TS7031" />
<error line="18" column="20" severity="error" message="Variable 'useSlot' implicitly has an 'any' type." source="TS7005" />
</file>
<file name="packages/checkout/components/discounts-meta/index.js">
<error line="9" column="41" severity="error" message="Variable 'useSlot' implicitly has type 'any' in some locations where its type cannot be determined." source="TS7034" />
<error line="14" column="9" severity="error" message="Property 'Fill' does not exist on type 'Object'." source="TS2339" />
<error line="14" column="42" severity="error" message="Property 'Slot' does not exist on type 'Object'." source="TS2339" />
<error line="17" column="18" severity="error" message="Binding element 'className' implicitly has an 'any' type." source="TS7031" />
<error line="17" column="29" severity="error" message="Binding element 'extensions' implicitly has an 'any' type." source="TS7031" />
<error line="17" column="41" severity="error" message="Binding element 'cart' implicitly has an 'any' type." source="TS7031" />
<error line="17" column="47" severity="error" message="Binding element 'context' implicitly has an 'any' type." source="TS7031" />
<error line="18" column="20" severity="error" message="Variable 'useSlot' implicitly has an 'any' type." source="TS7005" />
</file>
<file name="packages/checkout/components/order-shipping-packages/index.js">
<error line="9" column="26" severity="error" message="Variable 'useSlot' implicitly has type 'any' in some locations where its type cannot be determined." source="TS7034" />
<error line="13" column="2" severity="error" message="Property 'Fill' does not exist on type 'Object'." source="TS2339" />
<error line="14" column="2" severity="error" message="Property 'Slot' does not exist on type 'Object'." source="TS2339" />
<error line="18" column="2" severity="error" message="Binding element 'className' implicitly has an 'any' type." source="TS7031" />
<error line="19" column="2" severity="error" message="Binding element 'collapsible' implicitly has an 'any' type." source="TS7031" />
<error line="20" column="2" severity="error" message="Binding element 'noResultsMessage' implicitly has an 'any' type." source="TS7031" />
<error line="21" column="2" severity="error" message="Binding element 'renderOption' implicitly has an 'any' type." source="TS7031" />
<error line="22" column="2" severity="error" message="Binding element 'extensions' implicitly has an 'any' type." source="TS7031" />
<error line="23" column="2" severity="error" message="Binding element 'cart' implicitly has an 'any' type." source="TS7031" />
<error line="24" column="2" severity="error" message="Binding element 'components' implicitly has an 'any' type." source="TS7031" />
<error line="25" column="2" severity="error" message="Binding element 'context' implicitly has an 'any' type." source="TS7031" />
<error line="26" column="2" severity="error" message="Binding element 'shippingRates' implicitly has an 'any' type." source="TS7031" />
<error line="28" column="20" severity="error" message="Variable 'useSlot' implicitly has an 'any' type." source="TS7005" />
</file>
<file name="assets/js/base/components/button/index.tsx">
<error line="4" column="36" severity="error" message="Could not find a declaration file for module 'wordpress-components'. '/home/runner/work/woocommerce-blocks/woocommerce-blocks/node_modules/wordpress-components/build/index.js' implicitly has an 'any' type.
If the '@wordpress/components' package actually exposes this module, consider sending a pull request to amend 'https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/wordpress__components'" source="TS7016" />
</file>
<file name="node_modules/@types/wordpress__block-editor/index.d.ts">
<error line="21" column="14" severity="error" message="Cannot redeclare block-scoped variable 'store'." source="TS2451" />
</file>
<file name="assets/js/utils/global-style.js">
<error line="5" column="10" severity="error" message="Module '"@wordpress/block-editor"' has no exported member '__experimentalGetSpacingClassesAndStyles'." source="TS2305" />
</file>
<file name="assets/js/utils/products.js">
<error line="5" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="20" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
</file>
<file name="assets/js/data/schema/selectors.js">
<error line="19" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="106" column="7" severity="error" message="Variable 'namespaceRoutes' implicitly has type 'any[]' in some locations where its type cannot be determined." source="TS7034" />
<error line="109" column="8" severity="error" message="Variable 'namespaceRoutes' implicitly has an 'any[]' type." source="TS7005" />
<error line="113" column="10" severity="error" message="Variable 'namespaceRoutes' implicitly has an 'any[]' type." source="TS7005" />
<error line="122" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="130" column="27" severity="error" message="Property 'find' does not exist on type 'Object'." source="TS2339" />
<error line="130" column="39" severity="error" message="Binding element 'idNames' implicitly has an 'any' type." source="TS7031" />
<error line="151" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="152" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
</file>
<file name="assets/js/data/schema/resolvers.js">
<error line="5" column="10" severity="error" message="Module '"@wordpress/data"' has no exported member 'controls'." source="TS2305" />
<error line="33" column="24" severity="error" message="'yield' expression implicitly results in an 'any' type because its containing generator lacks a return-type annotation." source="TS7057" />
</file>
<file name="assets/js/data/schema/utils.js">
<error line="31" column="13" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="52" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
</file>
<file name="assets/js/data/utils/has-in-state.js">
<error line="10" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
</file>
<file name="assets/js/data/utils/update-state.js">
<error line="10" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
</file>
<file name="assets/js/data/schema/reducers.js">
<error line="26" column="10" severity="error" message="Property 'type' does not exist on type 'Object'." source="TS2339" />
<error line="26" column="16" severity="error" message="Property 'routes' does not exist on type 'Object'." source="TS2339" />
<error line="26" column="24" severity="error" message="Property 'namespace' does not exist on type 'Object'." source="TS2339" />
<error line="28" column="21" severity="error" message="Parameter 'route' implicitly has an 'any' type." source="TS7006" />
</file>
<file name="assets/js/data/schema/index.js">
<error line="17" column="2" severity="error" message="Type 'Reducer<CombinedState<{ routes: Object; }>, AnyAction>' is not assignable to type 'Reducer<"core/editor", AnyAction>'.
Types of parameters 'state' and 'state' are incompatible.
Type '"core/editor" | undefined' is not assignable to type 'CombinedState<{ routes: Object; }> | undefined'.
Type 'string' is not assignable to type 'CombinedState<{ routes: Object; }>'.
Type 'string' is not assignable to type '{ routes: Object; }'." source="TS2322" />
<error line="18" column="2" severity="error" message="Type 'typeof import("/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/data/schema/actions")' is not assignable to type '{ [k: string]: (...args: readonly any[]) => AnyAction | Generator<any, any, unknown>; }'.
Property 'receiveRoutes' is incompatible with index signature.
Type '(routes: Object, namespace?: string) => Object' is not assignable to type '(...args: readonly any[]) => AnyAction | Generator<any, any, unknown>'.
Type 'Object' is not assignable to type 'AnyAction | Generator<any, any, unknown>'.
The 'Object' type is assignable to very few other types. Did you mean to use the 'any' type instead?
The 'Object' type is assignable to very few other types. Did you mean to use the 'any' type instead?
Property 'type' is missing in type 'Object' but required in type 'AnyAction'." source="TS2322" />
</file>
<file name="assets/js/data/collections/constants.js">
<error line="2" column="14" severity="error" message="Variable 'DEFAULT_EMPTY_ARRAY' implicitly has an 'any[]' type." source="TS7005" />
</file>
<file name="assets/js/data/collections/selectors.js">
<error line="13" column="2" severity="error" message="Binding element 'state' implicitly has an 'any' type." source="TS7031" />
<error line="14" column="2" severity="error" message="Binding element 'namespace' implicitly has an 'any' type." source="TS7031" />
<error line="15" column="2" severity="error" message="Binding element 'resourceName' implicitly has an 'any' type." source="TS7031" />
<error line="16" column="2" severity="error" message="Binding element 'query' implicitly has an 'any' type." source="TS7031" />
<error line="17" column="2" severity="error" message="Binding element 'ids' implicitly has an 'any' type." source="TS7031" />
<error line="31" column="2" severity="error" message="Parameter 'state' implicitly has an 'any' type." source="TS7006" />
<error line="32" column="2" severity="error" message="Parameter 'namespace' implicitly has an 'any' type." source="TS7006" />
<error line="33" column="2" severity="error" message="Parameter 'resourceName' implicitly has an 'any' type." source="TS7006" />
<error line="55" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="58" column="13" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="64" column="2" severity="error" message="Type 'null' is not assignable to type 'Object | undefined'." source="TS2322" />
<error line="71" column="2" severity="error" message="Parameter 'state' implicitly has an 'any' type." source="TS7006" />
<error line="72" column="2" severity="error" message="Parameter 'namespace' implicitly has an 'any' type." source="TS7006" />
<error line="73" column="2" severity="error" message="Parameter 'resourceName' implicitly has an 'any' type." source="TS7006" />
<error line="84" column="3" severity="error" message="Type 'null' is not assignable to type 'any[] | undefined'." source="TS2322" />
<error line="104" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="117" column="2" severity="error" message="Type 'null' is not assignable to type 'Object | undefined'." source="TS2322" />
<error line="124" column="3" severity="error" message="Argument of type 'Object' is not assignable to parameter of type 'null | undefined'.
The 'Object' type is assignable to very few other types. Did you mean to use the 'any' type instead?" source="TS2345" />
<error line="143" column="15" severity="error" message="Property 'lastModified' does not exist on type 'string'." source="TS2339" />
</file>
<file name="assets/js/data/collections/actions.js">
<error line="8" column="8" severity="error" message="This expression is not constructable.
Type 'never' has no construct signatures." source="TS2351" />
<error line="20" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="31" column="5" severity="error" message="'}' expected." source="TS1005" />
<error line="46" column="26" severity="error" message="Type 'null' is not assignable to type 'Headers'." source="TS2322" />
<error line="60" column="2" severity="error" message="Parameter 'namespace' implicitly has an 'any' type." source="TS7006" />
<error line="61" column="2" severity="error" message="Parameter 'resourceName' implicitly has an 'any' type." source="TS7006" />
<error line="62" column="2" severity="error" message="Parameter 'queryString' implicitly has an 'any' type." source="TS7006" />
<error line="63" column="2" severity="error" message="Parameter 'ids' implicitly has an 'any' type." source="TS7006" />
<error line="64" column="2" severity="error" message="Parameter 'error' implicitly has an 'any' type." source="TS7006" />
<error line="80" column="38" severity="error" message="Parameter 'timestamp' implicitly has an 'any' type." source="TS7006" />
</file>
<file name="assets/js/data/shared-controls.ts">
<error line="139" column="7" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="141" column="17" severity="error" message="Parameter 'response' implicitly has an 'any' type." source="TS7006" />
<error line="144" column="19" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="146" column="26" severity="error" message="Object is of type 'unknown'." source="TS2571" />
</file>
<file name="assets/js/data/collections/resolvers.js">
<error line="4" column="10" severity="error" message="Module '"@wordpress/data"' has no exported member 'controls'." source="TS2305" />
<error line="21" column="23" severity="error" message="'yield' expression implicitly results in an 'any' type because its containing generator lacks a return-type annotation." source="TS7057" />
<error line="40" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="43" column="16" severity="error" message="'yield' expression implicitly results in an 'any' type because its containing generator lacks a return-type annotation." source="TS7057" />
<error line="93" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
</file>
<file name="assets/js/data/collections/reducers.js">
<error line="18" column="14" severity="error" message="Property 'type' does not exist on type 'Object'." source="TS2339" />
<error line="19" column="15" severity="error" message="Property 'timestamp' does not exist on type 'Object'." source="TS2339" />
<error line="19" column="35" severity="error" message="Property 'lastModified' does not exist on type 'Object'." source="TS2339" />
<error line="24" column="25" severity="error" message="Property 'timestamp' does not exist on type 'Object'." source="TS2339" />
<error line="29" column="14" severity="error" message="Property 'type' does not exist on type 'Object'." source="TS2339" />
<error line="33" column="10" severity="error" message="Property 'type' does not exist on type 'Object'." source="TS2339" />
<error line="33" column="16" severity="error" message="Property 'namespace' does not exist on type 'Object'." source="TS2339" />
<error line="33" column="27" severity="error" message="Property 'resourceName' does not exist on type 'Object'." source="TS2339" />
<error line="33" column="41" severity="error" message="Property 'queryString' does not exist on type 'Object'." source="TS2339" />
<error line="33" column="54" severity="error" message="Property 'response' does not exist on type 'Object'." source="TS2339" />
<error line="35" column="21" severity="error" message="Property 'ids' does not exist on type 'Object'." source="TS2339" />
<error line="35" column="50" severity="error" message="Property 'ids' does not exist on type 'Object'." source="TS2339" />
</file>
<file name="assets/js/data/collections/index.js">
<error line="20" column="2" severity="error" message="Type '{ API_FETCH_WITH_HEADERS: ({ options, }: { readonly type: "API_FETCH_WITH_HEADERS"; readonly options: APIFetchOptions; }) => Promise<unknown>; API_FETCH: (action: AnyAction) => Promise<...>; DISPATCH: (action: AnyAction) => void; SELECT: (action: AnyAction) => any; }' is not assignable to type '{ [k: string]: (action: AnyAction) => any; }'.
Property 'API_FETCH_WITH_HEADERS' is incompatible with index signature.
Type '({ options, }: ReturnType<typeof apiFetchWithHeaders>) => Promise<unknown>' is not assignable to type '(action: AnyAction) => any'.
Types of parameters '__0' and 'action' are incompatible.
Property 'options' is missing in type 'AnyAction' but required in type '{ readonly type: "API_FETCH_WITH_HEADERS"; readonly options: APIFetchOptions; }'." source="TS2322" />
<error line="21" column="2" severity="error" message="Type 'typeof import("/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/data/collections/selectors")' is not assignable to type '{ [k: string]: (state: Object, ...args: readonly any[]) => any; }'.
Property 'getCollectionHeader' is incompatible with index signature.
Type '(state: string, header: string, namespace: string, resourceName: string, query?: Object | undefined, ids?: any[] | undefined) => any' is not assignable to type '(state: Object, ...args: readonly any[]) => any'.
Types of parameters 'state' and 'state' are incompatible.
Type 'Object' is not assignable to type 'string'." source="TS2322" />
</file>
<file name="assets/js/data/cart/default-state.ts">
<error line="73" column="4" severity="error" message="Type '""' is not assignable to type 'CurrencyCode'." source="TS2322" />
</file>
<file name="assets/js/data/mapped-types.ts">
<error line="29" column="28" severity="error" message="Type 'S[selector]' does not satisfy the constraint 'Function'.
Type 'S[FunctionKeys<S>]' is not assignable to type 'Function'.
Type 'S[NonUndefined<S[keyof S]> extends Function ? keyof S : never]' is not assignable to type 'Function'.
Type 'S[keyof S]' is not assignable to type 'Function'.
Type 'S[string] | S[number] | S[symbol]' is not assignable to type 'Function'.
Type 'S[string]' is not assignable to type 'Function'." source="TS2344" />
<error line="30" column="19" severity="error" message="Type 'S[selector]' does not satisfy the constraint '(...args: any) => any'.
Type 'S[FunctionKeys<S>]' is not assignable to type '(...args: any) => any'.
Type 'S[NonUndefined<S[keyof S]> extends Function ? keyof S : never]' is not assignable to type '(...args: any) => any'.
Type 'S[keyof S]' is not assignable to type '(...args: any) => any'.
Type 'S[string] | S[number] | S[symbol]' is not assignable to type '(...args: any) => any'.
Type 'S[string]' is not assignable to type '(...args: any) => any'." source="TS2344" />
</file>
<file name="assets/js/data/cart/actions.ts">
<error line="14" column="10" severity="error" message="Module '"@wordpress/data"' has no exported member 'controls'." source="TS2305" />
<error line="224" column="23" severity="error" message="Argument of type 'unknown' is not assignable to parameter of type 'ResponseError | null | undefined'." source="TS2345" />
<error line="226" column="8" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="227" column="23" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="260" column="23" severity="error" message="Argument of type 'unknown' is not assignable to parameter of type 'ResponseError | null | undefined'." source="TS2345" />
<error line="264" column="8" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="265" column="23" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="300" column="23" severity="error" message="Argument of type 'unknown' is not assignable to parameter of type 'ResponseError | null | undefined'." source="TS2345" />
<error line="304" column="8" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="305" column="23" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="344" column="23" severity="error" message="Argument of type 'unknown' is not assignable to parameter of type 'ResponseError | null | undefined'." source="TS2345" />
<error line="347" column="8" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="348" column="23" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="382" column="23" severity="error" message="Argument of type 'unknown' is not assignable to parameter of type 'ResponseError | null | undefined'." source="TS2345" />
<error line="385" column="8" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="386" column="23" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="428" column="23" severity="error" message="Argument of type 'unknown' is not assignable to parameter of type 'ResponseError | null | undefined'." source="TS2345" />
<error line="431" column="8" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="432" column="23" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="463" column="23" severity="error" message="Argument of type 'unknown' is not assignable to parameter of type 'ResponseError | null | undefined'." source="TS2345" />
<error line="467" column="8" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="468" column="23" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="514" column="23" severity="error" message="Argument of type 'unknown' is not assignable to parameter of type 'ResponseError | null | undefined'." source="TS2345" />
<error line="518" column="8" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="519" column="23" severity="error" message="Object is of type 'unknown'." source="TS2571" />
</file>
<file name="assets/js/data/cart/resolvers.ts">
<error line="5" column="10" severity="error" message="Module '"@wordpress/data"' has no exported member 'controls'." source="TS2305" />
</file>
<file name="assets/js/data/cart/reducers.ts">
<error line="25" column="18" severity="error" message="Property 'type' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="29" column="34" severity="error" message="Property 'cartItem' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="30" column="20" severity="error" message="Property 'cartItem' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="50" column="18" severity="error" message="Property 'type' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="52" column="16" severity="error" message="Property 'error' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="55" column="42" severity="error" message="Property 'error' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="60" column="16" severity="error" message="Property 'error' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="63" column="23" severity="error" message="Property 'error' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="68" column="16" severity="error" message="Property 'response' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="74" column="17" severity="error" message="Property 'response' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="80" column="16" severity="error" message="Property 'couponCode' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="80" column="37" severity="error" message="Property 'couponCode' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="85" column="30" severity="error" message="Property 'couponCode' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="97" column="17" severity="error" message="Property 'billingAddress' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="109" column="17" severity="error" message="Property 'shippingAddress' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="116" column="16" severity="error" message="Property 'couponCode' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="116" column="37" severity="error" message="Property 'couponCode' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="121" column="30" severity="error" message="Property 'couponCode' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="131" column="31" severity="error" message="Property 'cartItemKey' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="133" column="16" severity="error" message="Property 'isPendingQuantity' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="133" column="44" severity="error" message="Property 'cartItemKey' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="134" column="38" severity="error" message="Property 'cartItemKey' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="143" column="31" severity="error" message="Property 'cartItemKey' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="145" column="16" severity="error" message="Property 'isPendingDelete' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="145" column="42" severity="error" message="Property 'cartItemKey' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="146" column="36" severity="error" message="Property 'cartItemKey' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="169" column="38" severity="error" message="Property 'isResolving' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="178" column="38" severity="error" message="Property 'isResolving' does not exist on type 'Partial<unknown>'." source="TS2339" />
<error line="187" column="30" severity="error" message="Property 'isCartDataStale' does not exist on type 'Partial<unknown>'." source="TS2339" />
</file>
<file name="assets/js/base/utils/errors.js">
<error line="26" column="14" severity="error" message="Object is of type 'unknown'." source="TS2571" />
<error line="33" column="3" severity="error" message="Type 'string | undefined' is not assignable to type 'string'.
Type 'undefined' is not assignable to type 'string'." source="TS2322" />
<error line="45" column="16" severity="error" message="Property 'data' does not exist on type 'Object'." source="TS2339" />
<error line="45" column="33" severity="error" message="Property 'code' does not exist on type 'Object'." source="TS2339" />
<error line="46" column="49" severity="error" message="Property 'data' does not exist on type 'Object'." source="TS2339" />
<error line="52" column="19" severity="error" message="Property 'message' does not exist on type 'Object'." source="TS2339" />
<error line="59" column="34" severity="error" message="Property 'message' does not exist on type 'Object'." source="TS2339" />
</file>
<file name="assets/js/base/utils/address.ts">
<error line="92" column="46" severity="error" message="Argument of type 'string[]' is not assignable to parameter of type '(keyof AddressFields)[]'.
Type 'string' is not assignable to type 'keyof AddressFields'." source="TS2345" />
</file>
<file name="assets/js/base/utils/shipping-rates.js">
<error line="4" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="13" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
</file>
<file name="assets/js/base/components/block-error-boundary/index.tsx">
<error line="58" column="6" severity="error" message="Type '{ showErrorBlock: boolean; errorMessage: string | null; header: string | undefined; imageUrl: string | undefined; text: ReactNode; errorMessagePrefix: string | undefined; button: ReactNode; }' is not assignable to type 'BlockErrorProps' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.
Types of property 'imageUrl' are incompatible.
Type 'string | undefined' is not assignable to type 'string'.
Type 'undefined' is not assignable to type 'string'." source="TS2375" />
<error line="58" column="6" severity="error" message="'BlockError' cannot be used as a JSX component.
Its return type 'ReactNode' is not a valid JSX element.
Type 'undefined' is not assignable to type 'Element | null'." source="TS2786" />
</file>
<file name="assets/js/base/utils/render-frontend.tsx">
<error line="60" column="4" severity="error" message="No overload matches this call.
Overload 1 of 2, '(props: BlockErrorBoundaryProps | Readonly<BlockErrorBoundaryProps>): BlockErrorBoundary', gave the following error.
Property 'text' is missing in type '{ children: Element; }' but required in type 'Readonly<BlockErrorBoundaryProps>'.
Overload 2 of 2, '(props: BlockErrorBoundaryProps, context: any): BlockErrorBoundary', gave the following error.
Property 'text' is missing in type '{ children: Element; }' but required in type 'Readonly<BlockErrorBoundaryProps>'." source="TS2769" />
<error line="168" column="27" severity="error" message="Argument of type '{ Block: BlockType<TProps, TAttributes> | null; containers: NodeListOf<Element>; getProps: GetPropsFn<TProps, TAttributes> | undefined; getErrorBoundaryProps: ((el: HTMLElement, i: number) => Record<...>) | undefined; }' is not assignable to parameter of type 'RenderBlockInContainersParams<TProps, TAttributes>' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.
Types of property 'getProps' are incompatible.
Type 'GetPropsFn<TProps, TAttributes> | undefined' is not assignable to type 'GetPropsFn<TProps, TAttributes>'.
Type 'undefined' is not assignable to type 'GetPropsFn<TProps, TAttributes>'." source="TS2379" />
<error line="199" column="27" severity="error" message="Argument of type '{ Block: BlockType<TProps, TAttributes> | null; containers: NodeListOf<Element>; getProps: GetPropsFn<TProps, TAttributes> | undefined; getErrorBoundaryProps: ((el: HTMLElement, i: number) => Record<...>) | undefined; }' is not assignable to parameter of type 'RenderBlockInContainersParams<TProps, TAttributes>' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.
Types of property 'getProps' are incompatible.
Type 'GetPropsFn<TProps, TAttributes> | undefined' is not assignable to type 'GetPropsFn<TProps, TAttributes>'.
Type 'undefined' is not assignable to type 'GetPropsFn<TProps, TAttributes>'." source="TS2379" />
<error line="244" column="30" severity="error" message="Argument of type '{ Block: BlockType<TProps, TAttributes> | null; getProps: GetPropsFn<TProps, TAttributes> | undefined; getErrorBoundaryProps: ((el: HTMLElement, i: number) => Record<...>) | undefined; selector: string; wrappers: NodeListOf<...>; }' is not assignable to parameter of type 'RenderBlockOutsideWrappersParams<TProps, TAttributes>' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.
Types of property 'getProps' are incompatible.
Type 'GetPropsFn<TProps, TAttributes> | undefined' is not assignable to type 'GetPropsFn<TProps, TAttributes>'.
Type 'undefined' is not assignable to type 'GetPropsFn<TProps, TAttributes>'." source="TS2379" />
</file>
<file name="assets/js/base/utils/get-valid-block-attributes.js">
<error line="5" column="12" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="6" column="13" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="9" column="8" severity="error" message="Variable 'attributes' implicitly has type 'any[]' in some locations where its type cannot be determined." source="TS7034" />
<error line="12" column="30" severity="error" message="Element implicitly has an 'any' type because index expression is not of type 'number'." source="TS7015" />
<error line="13" column="13" severity="error" message="Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'Object'.
No index signature with a parameter of type 'string' was found on type 'Object'." source="TS7053" />
<error line="15" column="6" severity="error" message="Variable 'attributes' implicitly has an 'any[]' type." source="TS7005" />
<error line="15" column="18" severity="error" message="Element implicitly has an 'any' type because index expression is not of type 'number'." source="TS7015" />
<error line="16" column="22" severity="error" message="Element implicitly has an 'any' type because index expression is not of type 'number'." source="TS7015" />
<error line="17" column="22" severity="error" message="Element implicitly has an 'any' type because index expression is not of type 'number'." source="TS7015" />
<error line="20" column="6" severity="error" message="Variable 'attributes' implicitly has an 'any[]' type." source="TS7005" />
<error line="20" column="18" severity="error" message="Element implicitly has an 'any' type because index expression is not of type 'number'." source="TS7015" />
<error line="20" column="51" severity="error" message="Element implicitly has an 'any' type because index expression is not of type 'number'." source="TS7015" />
<error line="24" column="6" severity="error" message="Variable 'attributes' implicitly has an 'any[]' type." source="TS7005" />
<error line="24" column="18" severity="error" message="Element implicitly has an 'any' type because index expression is not of type 'number'." source="TS7015" />
<error line="24" column="53" severity="error" message="Element implicitly has an 'any' type because index expression is not of type 'number'." source="TS7015" />
<error line="27" column="6" severity="error" message="Variable 'attributes' implicitly has an 'any[]' type." source="TS7005" />
<error line="27" column="18" severity="error" message="Element implicitly has an 'any' type because index expression is not of type 'number'." source="TS7015" />
<error line="27" column="41" severity="error" message="Element implicitly has an 'any' type because index expression is not of type 'number'." source="TS7015" />
<error line="31" column="4" severity="error" message="Variable 'attributes' implicitly has an 'any[]' type." source="TS7005" />
<error line="31" column="16" severity="error" message="Element implicitly has an 'any' type because index expression is not of type 'number'." source="TS7015" />
<error line="31" column="24" severity="error" message="Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'Object'.
No index signature with a parameter of type 'string' was found on type 'Object'." source="TS7053" />
<error line="35" column="9" severity="error" message="Variable 'attributes' implicitly has an 'any[]' type." source="TS7005" />
</file>
<file name="assets/js/base/utils/product-data.js">
<error line="8" column="17" severity="error" message="Property 'is_purchasable' does not exist on type 'Object'." source="TS2339" />
<error line="30" column="42" severity="error" message="Property 'type' does not exist on type 'Object'." source="TS2339" />
</file>
<file name="assets/js/data/cart/controls.js">
<error line="18" column="31" severity="error" message="Parameter 'preserveCartData' implicitly has an 'any' type." source="TS7006" />
</file>
<file name="assets/js/previews/cart.ts">
<error line="75" column="4" severity="error" message="Property 'price_range' is missing in type '{ currency_code: "USD"; currency_symbol: string; currency_minor_unit: number; currency_decimal_separator: string; currency_thousand_separator: string; currency_prefix: string; currency_suffix: string; price: string; regular_price: string; sale_price: string; raw_prices: { ...; }; }' but required in type 'CartItemPrices'." source="TS2741" />
<error line="141" column="4" severity="error" message="Property 'price_range' is missing in type '{ currency_code: "USD"; currency_symbol: string; currency_minor_unit: number; currency_decimal_separator: string; currency_thousand_separator: string; currency_prefix: string; currency_suffix: string; price: string; regular_price: string; sale_price: string; raw_prices: { ...; }; }' but required in type 'CartItemPrices'." source="TS2741" />
<error line="191" column="5" severity="error" message="Type '{ currency_code: "USD"; currency_symbol: string; currency_minor_unit: number; currency_decimal_separator: string; currency_thousand_separator: string; currency_prefix: string; currency_suffix: string; price: string; regular_price: string; sale_price: string; raw_prices: { ...; }; }' is not assignable to type 'ProductResponseItemPrices'.
Object literal may only specify known properties, and 'raw_prices' does not exist in type 'ProductResponseItemPrices'." source="TS2322" />
<error line="209" column="4" severity="error" message="Type 'number' is not assignable to type 'string'." source="TS2322" />
<error line="226" column="5" severity="error" message="Type '{ currency_code: "USD"; currency_symbol: string; currency_minor_unit: number; currency_decimal_separator: string; currency_thousand_separator: string; currency_prefix: string; currency_suffix: string; price: string; regular_price: string; sale_price: string; raw_prices: { ...; }; }' is not assignable to type 'ProductResponseItemPrices'.
Object literal may only specify known properties, and 'raw_prices' does not exist in type 'ProductResponseItemPrices'." source="TS2322" />
<error line="245" column="4" severity="error" message="Type 'number' is not assignable to type 'string'." source="TS2322" />
<error line="263" column="5" severity="error" message="Type '{ currency_code: "USD"; currency_symbol: string; currency_minor_unit: number; currency_decimal_separator: string; currency_thousand_separator: string; currency_prefix: string; currency_suffix: string; price: string; regular_price: string; sale_price: string; raw_prices: { ...; }; }' is not assignable to type 'ProductResponseItemPrices'.
Object literal may only specify known properties, and 'raw_prices' does not exist in type 'ProductResponseItemPrices'." source="TS2322" />
<error line="283" column="4" severity="error" message="Type 'number' is not assignable to type 'string'." source="TS2322" />
<error line="301" column="5" severity="error" message="Type '{ currency_code: "USD"; currency_symbol: string; currency_minor_unit: number; currency_decimal_separator: string; currency_thousand_separator: string; currency_prefix: string; currency_suffix: string; price: string; regular_price: string; sale_price: string; raw_prices: { ...; }; }' is not assignable to type 'ProductResponseItemPrices'.
Object literal may only specify known properties, and 'raw_prices' does not exist in type 'ProductResponseItemPrices'." source="TS2322" />
<error line="320" column="4" severity="error" message="Type 'number' is not assignable to type 'string'." source="TS2322" />
<error line="338" column="5" severity="error" message="Type '{ currency_code: "USD"; currency_symbol: string; currency_minor_unit: number; currency_decimal_separator: string; currency_thousand_separator: string; currency_prefix: string; currency_suffix: string; price: string; regular_price: string; sale_price: string; raw_prices: { ...; }; }' is not assignable to type 'ProductResponseItemPrices'.
Object literal may only specify known properties, and 'raw_prices' does not exist in type 'ProductResponseItemPrices'." source="TS2322" />
<error line="358" column="4" severity="error" message="Type 'number' is not assignable to type 'string'." source="TS2322" />
<error line="376" column="5" severity="error" message="Type '{ currency_code: "USD"; currency_symbol: string; currency_minor_unit: number; currency_decimal_separator: string; currency_thousand_separator: string; currency_prefix: string; currency_suffix: string; price: string; regular_price: string; sale_price: string; raw_prices: { ...; }; }' is not assignable to type 'ProductResponseItemPrices'.
Object literal may only specify known properties, and 'raw_prices' does not exist in type 'ProductResponseItemPrices'." source="TS2322" />
<error line="394" column="4" severity="error" message="Type 'number' is not assignable to type 'string'." source="TS2322" />
<error line="411" column="5" severity="error" message="Type '{ currency_code: "USD"; currency_symbol: string; currency_minor_unit: number; currency_decimal_separator: string; currency_thousand_separator: string; currency_prefix: string; currency_suffix: string; total: string; total_tax: string; tax_lines: { ...; }[]; }' is not assignable to type 'CartResponseFeeItemTotals'.
Object literal may only specify known properties, and 'tax_lines' does not exist in type 'CartResponseFeeItemTotals'." source="TS2322" />
</file>
<file name="assets/js/data/payment/utils/check-payment-methods.ts">
<error line="15" column="10" severity="error" message="Module '"@wordpress/notices"' has no exported member 'store'." source="TS2305" />
<error line="143" column="5" severity="error" message="Argument of type 'unknown' is not assignable to parameter of type 'CartShippingRate[]'." source="TS2345" />
<error line="174" column="37" severity="error" message="Argument of type 'Record<string, unknown>' is not assignable to parameter of type 'CanMakePaymentArgument'.
Type 'Record<string, unknown>' is missing the following properties from type 'CanMakePaymentArgument': cart, cartTotals, cartNeedsShipping, billingData, and 3 more." source="TS2345" />
<error line="186" column="13" severity="error" message="Property 'createErrorNotice' does not exist on type 'typeof import("/home/runner/work/woocommerce-blocks/woocommerce-blocks/node_modules/@types/wordpress__rich-text/store/actions")'." source="TS2339" />
</file>
<file name="assets/js/data/payment/thunks.ts">
<error line="4" column="10" severity="error" message="Module '"@wordpress/notices"' has no exported member 'store'." source="TS2305" />
<error line="22" column="13" severity="error" message="Binding element 'registry' implicitly has an 'any' type." source="TS7031" />
<error line="74" column="23" severity="error" message="Property 'meta' does not exist on type 'never'." source="TS2339" />
<error line="90" column="24" severity="error" message="Property 'message' does not exist on type 'never'." source="TS2339" />
<error line="90" column="49" severity="error" message="Property 'message' does not exist on type 'never'." source="TS2339" />
<error line="91" column="39" severity="error" message="Property 'message' does not exist on type 'never'." source="TS2339" />
<error line="95" column="23" severity="error" message="Property 'messageContext' does not exist on type 'never'." source="TS2339" />
<error line="101" column="21" severity="error" message="Property 'meta' does not exist on type 'never'." source="TS2339" />
<error line="109" column="24" severity="error" message="Property 'message' does not exist on type 'never'." source="TS2339" />
<error line="109" column="49" severity="error" message="Property 'message' does not exist on type 'never'." source="TS2339" />
<error line="110" column="39" severity="error" message="Property 'message' does not exist on type 'never'." source="TS2339" />
<error line="114" column="23" severity="error" message="Property 'messageContext' does not exist on type 'never'." source="TS2339" />
<error line="120" column="41" severity="error" message="Property 'validationErrors' does not exist on type 'never'." source="TS2339" />
</file>
<file name="assets/js/data/payment/actions.ts">
<error line="52" column="19" severity="error" message="Binding element 'select' implicitly has an 'any' type." source="TS7031" />
<error line="52" column="27" severity="error" message="Binding element 'dispatch' implicitly has an 'any' type." source="TS7031" />
<error line="133" column="19" severity="error" message="Binding element 'dispatch' implicitly has an 'any' type." source="TS7031" />
<error line="133" column="29" severity="error" message="Binding element 'select' implicitly has an 'any' type." source="TS7031" />
<error line="181" column="19" severity="error" message="Binding element 'select' implicitly has an 'any' type." source="TS7031" />
<error line="181" column="27" severity="error" message="Binding element 'dispatch' implicitly has an 'any' type." source="TS7031" />
</file>
<file name="assets/js/data/checkout/thunks.ts">
<error line="5" column="10" severity="error" message="Module '"@wordpress/notices"' has no exported member 'store'." source="TS2305" />
<error line="63" column="11" severity="error" message="Property 'createErrorNotice' does not exist on type 'typeof import("/home/runner/work/woocommerce-blocks/woocommerce-blocks/node_modules/@types/wordpress__rich-text/store/actions")'." source="TS2339" />
<error line="98" column="12" severity="error" message="Property 'createErrorNotice' does not exist on type 'typeof import("/home/runner/work/woocommerce-blocks/woocommerce-blocks/node_modules/@types/wordpress__rich-text/store/actions")'." source="TS2339" />
</file>
<file name="assets/js/data/checkout/reducers.ts">
<error line="152" column="25" severity="error" message="Property 'SET_PRISTINE' does not exist on type '{ readonly SET_IDLE: "SET_IDLE"; readonly SET_REDIRECT_URL: "SET_REDIRECT_URL"; readonly SET_COMPLETE: "SET_CHECKOUT_COMPLETE"; readonly SET_BEFORE_PROCESSING: "SET_BEFORE_PROCESSING"; ... 10 more ...; readonly SET_IS_CART: "SET_IS_CART"; }'." source="TS2339" />
</file>
<file name="assets/js/data/checkout/index.ts">
<error line="21" column="44" severity="error" message="Argument of type '{ reducer: (state: CheckoutState | undefined, action: actions.CheckoutAction) => CheckoutState; selectors: typeof selectors; actions: typeof actions; }' is not assignable to parameter of type 'StoreConfig<CheckoutState>'.
Types of property 'actions' are incompatible.
Type 'typeof import("/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/data/checkout/actions")' is not assignable to type '{ [k: string]: (...args: readonly any[]) => AnyAction | Generator<any, any, unknown>; }'.
Property '__internalProcessCheckoutResponse' is incompatible with index signature.
Type '(response: CheckoutResponse) => ({ dispatch, }: { dispatch: DispatchFromMap<typeof actions>; }) => void' is not assignable to type '(...args: readonly any[]) => AnyAction | Generator<any, any, unknown>'.
Type '({ dispatch, }: { dispatch: DispatchFromMap<typeof actions>; }) => void' is not assignable to type 'AnyAction | Generator<any, any, unknown>'." source="TS2345" />
</file>
<file name="assets/js/data/payment/index.ts">
<error line="25" column="44" severity="error" message="Argument of type '{ reducer: Reducer<PaymentState, AnyAction>; selectors: typeof selectors; actions: typeof actions; controls: any; }' is not assignable to parameter of type 'StoreConfig<PaymentState>'.
Types of property 'actions' are incompatible.
Type 'typeof import("/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/data/payment/actions")' is not assignable to type '{ [k: string]: (...args: readonly any[]) => AnyAction | Generator<any, any, unknown>; }'.
Property '__internalUpdateAvailablePaymentMethods' is incompatible with index signature.
Type '() => ({ select, dispatch }: { select: any; dispatch: any; }) => Promise<void>' is not assignable to type '(...args: readonly any[]) => AnyAction | Generator<any, any, unknown>'.
Type '({ select, dispatch }: { select: any; dispatch: any; }) => Promise<void>' is not assignable to type 'AnyAction | Generator<any, any, unknown>'." source="TS2345" />
</file>
<file name="assets/js/data/query-state/utils.js">
<error line="1" column="37" severity="error" message="Parameter 'state' implicitly has an 'any' type." source="TS7006" />
<error line="1" column="44" severity="error" message="Parameter 'context' implicitly has an 'any' type." source="TS7006" />
</file>
<file name="assets/js/data/query-state/reducers.js">
<error line="14" column="10" severity="error" message="Property 'type' does not exist on type 'Object'." source="TS2339" />
<error line="14" column="16" severity="error" message="Property 'context' does not exist on type 'Object'." source="TS2339" />
<error line="14" column="25" severity="error" message="Property 'queryKey' does not exist on type 'Object'." source="TS2339" />
<error line="14" column="35" severity="error" message="Property 'value' does not exist on type 'Object'." source="TS2339" />
</file>
<file name="assets/js/data/query-state/index.js">
<error line="16" column="2" severity="error" message="Type 'typeof import("/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/data/query-state/actions")' is not assignable to type '{ [k: string]: (...args: readonly any[]) => AnyAction | Generator<any, any, unknown>; }'.
Property 'setQueryValue' is incompatible with index signature.
Type '(context: string, queryKey: string, value: any) => Object' is not assignable to type '(...args: readonly any[]) => AnyAction | Generator<any, any, unknown>'.
Type 'Object' is not assignable to type 'AnyAction | Generator<any, any, unknown>'.
The 'Object' type is assignable to very few other types. Did you mean to use the 'any' type instead?" source="TS2322" />
</file>
<file name="packages/checkout/components/store-notices-container/index.tsx">
<error line="5" column="24" severity="error" message="Could not find a declaration file for module 'wordpress-components'. '/home/runner/work/woocommerce-blocks/woocommerce-blocks/node_modules/wordpress-components/build/index.js' implicitly has an 'any' type.
If the '@wordpress/components' package actually exposes this module, consider sending a pull request to amend 'https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/wordpress__components'" source="TS7016" />
</file>
<file name="packages/checkout/filter-registry/index.ts">
<error line="36" column="37" severity="error" message="Cannot find name 'T'." source="TS2304" />
</file>
<file name="packages/checkout/blocks-registry/register-checkout-block.ts">
<error line="34" column="3" severity="error" message="Type 'LazyExoticComponent<ComponentType<unknown>> | (() => Element | null) | null' is not assignable to type 'Function'.
Type 'null' is not assignable to type 'Function'." source="TS2322" />
<error line="44" column="43" severity="error" message="Property 'lock' does not exist on type '{}'." source="TS2339" />
</file>
<file name="packages/checkout/index.js">
<error line="6" column="34" severity="error" message="Could not find a declaration file for module 'wordpress-components'. '/home/runner/work/woocommerce-blocks/woocommerce-blocks/node_modules/wordpress-components/build/index.js' implicitly has an 'any' type.
If the '@wordpress/components' package actually exposes this module, consider sending a pull request to amend 'https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/wordpress__components'" source="TS7016" />
</file>
<file name="assets/js/blocks-registry/block-components/register-block-component.js">
<error line="42" column="2" severity="error" message="Type 'Function' is not assignable to type 'RegisteredBlockComponent'." source="TS2322" />
<error line="53" column="7" severity="error" message="Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'Object'.
No index signature with a parameter of type 'string' was found on type 'Object'." source="TS7053" />
<error line="54" column="15" severity="error" message="Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'Object'.
No index signature with a parameter of type 'string' was found on type 'Object'." source="TS7053" />
<error line="58" column="4" severity="error" message="Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'Object'.
No index signature with a parameter of type 'string' was found on type 'Object'." source="TS7053" />
<error line="59" column="4" severity="error" message="Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'Object'.
No index signature with a parameter of type 'string' was found on type 'Object'." source="TS7053" />
<error line="78" column="28" severity="error" message="Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'Object'.
No index signature with a parameter of type 'string' was found on type 'Object'." source="TS7053" />
</file>
<file name="assets/js/base/components/product-price/index.tsx">
<error line="173" column="5" severity="error" message="Type 'string | number | undefined' is not assignable to type 'string | number'.
Type 'undefined' is not assignable to type 'string | number'." source="TS2322" />
</file>
<file name="assets/js/shared/context/inner-block-layout-context.js">
<error line="26" column="2" severity="error" message="Binding element 'children' implicitly has an 'any' type." source="TS7031" />
<error line="33" column="37" severity="error" message="Property 'isLoading' is missing in type '{ parentName: string; parentClassName: string; }' but required in type '{ parentName: string; parentClassName: string; isLoading: boolean; }'." source="TS2741" />
</file>
<file name="assets/js/base/hooks/use-container-queries.ts">
<error line="36" column="7" severity="error" message="Object is possibly 'null'." source="TS2531" />
<error line="38" column="14" severity="error" message="Object is possibly 'null'." source="TS2531" />
<error line="40" column="14" severity="error" message="Object is possibly 'null'." source="TS2531" />
</file>
<file name="assets/js/base/hooks/use-position-relative-to-viewport.js">
<error line="26" column="13" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="75" column="24" severity="error" message="Argument of type 'null' is not assignable to parameter of type 'Element'." source="TS2345" />
</file>
<file name="assets/js/base/hooks/use-spacing-props.ts">
<error line="5" column="10" severity="error" message="Module '"@wordpress/block-editor"' has no exported member '__experimentalGetSpacingClassesAndStyles'." source="TS2305" />
</file>
<file name="assets/js/base/hooks/use-color-props.ts">
<error line="5" column="10" severity="error" message="Module '"@wordpress/block-editor"' has no exported member '__experimentalUseColorProps'." source="TS2305" />
</file>
<file name="assets/js/base/hooks/use-border-props.ts">
<error line="5" column="10" severity="error" message="Module '"@wordpress/block-editor"' has no exported member '__experimentalUseBorderProps'." source="TS2305" />
</file>
<file name="assets/js/base/context/providers/editor-context.js">
<error line="8" column="56" severity="error" message="Namespace '"/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/types/type-defs/contexts"' has no exported member 'EditorDataContext'." source="TS2694" />
<error line="9" column="52" severity="error" message="Namespace '"/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/types/type-defs/cart"' has no exported member 'CartData'." source="TS2694" />
<error line="59" column="12" severity="error" message="Element implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Object'." source="TS7053" />
</file>
<file name="assets/js/base/context/hooks/cart/use-store-cart-event-listeners.ts">
<error line="20" column="23" severity="error" message="Parameter 'e' implicitly has an 'any' type." source="TS7006" />
<error line="23" column="24" severity="error" message="Property 'invalidateResolutionForStore' does not exist on type 'DispatchFromMap<typeof import("/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/data/cart/actions")>'." source="TS2339" />
</file>
<file name="assets/js/base/context/hooks/cart/use-store-cart.ts">
<error line="74" column="2" severity="error" message="Type '""' is not assignable to type 'CurrencyCode'." source="TS2322" />
<error line="146" column="3" severity="error" message="Argument of type '(select: any, { dispatch }: { dispatch: any; }) => StoreCart | { cartCoupons: any; cartItems: any; crossSellsProducts: any; cartFees: any; cartItemsCount: any; cartItemsWeight: any; cartNeedsPayment: any; ... 13 more ...; receiveCart: any; } | { ...; }' is not assignable to parameter of type '(s: { (storeNameOrDescriptor: string | StoreDescriptor): SelectorMap; (key: "core/rich-text"): typeof import("/home/runner/work/woocommerce-blocks/woocommerce-blocks/node_modules/@types/wordpress__rich-text/store/selectors"); (key: "core/notices"): typeof import("/home/runner/work/woocommerce-blocks/woocommerce-bloc...'." source="TS2345" />
<error line="146" column="5" severity="error" message="Parameter 'select' implicitly has an 'any' type." source="TS7006" />
<error line="146" column="15" severity="error" message="Binding element 'dispatch' implicitly has an 'any' type." source="TS7031" />
<error line="227" column="44" severity="error" message="Argument of type 'Record<string, unknown>' is not assignable to parameter of type 'CartResponseShippingAddress | CartResponseBillingAddress'.
Type 'Record<string, unknown>' is missing the following properties from type 'CartResponseBillingAddress': email, company, phone, address_1, and 7 more." source="TS2345" />
<error line="228" column="47" severity="error" message="Argument of type 'Record<string, unknown>' is not assignable to parameter of type 'CartResponseShippingAddress | CartResponseBillingAddress'." source="TS2345" />
<error line="229" column="48" severity="error" message="Argument of type 'Record<string, unknown>' is not assignable to parameter of type 'CartResponseShippingAddress | CartResponseBillingAddress'." source="TS2345" />
<error line="245" column="3" severity="error" message="Type 'StoreCart' is not assignable to type 'undefined'." source="TS2322" />
<error line="248" column="2" severity="error" message="Type 'undefined' is not assignable to type 'StoreCart'." source="TS2322" />
</file>
<file name="assets/js/base/context/hooks/cart/use-store-cart-coupons.ts">
<error line="41" column="3" severity="error" message="Type '"applyCoupon" | "removeCoupon" | "receiveApplyingCoupon" | "isApplyingCoupon" | "isRemovingCoupon"' does not satisfy the constraint 'keyof StoreCartCoupon'.
Type '"receiveApplyingCoupon"' is not assignable to type 'keyof StoreCartCoupon'." source="TS2344" />
<error line="47" column="3" severity="error" message="Argument of type '(select: any, { dispatch }: { dispatch: any; }) => { applyCoupon: any; removeCoupon: any; isApplyingCoupon: any; isRemovingCoupon: any; receiveApplyingCoupon: any; }' is not assignable to parameter of type '(s: { (storeNameOrDescriptor: string | StoreDescriptor): SelectorMap; (key: "core/rich-text"): typeof import("/home/runner/work/woocommerce-blocks/woocommerce-blocks/node_modules/@types/wordpress__rich-text/store/selectors"); (key: "core/notices"): typeof import("/home/runner/work/woocommerce-blocks/woocommerce-bloc...'." source="TS2345" />
<error line="47" column="5" severity="error" message="Parameter 'select' implicitly has an 'any' type." source="TS7006" />
<error line="47" column="15" severity="error" message="Binding element 'dispatch' implicitly has an 'any' type." source="TS7031" />
<error line="64" column="5" severity="error" message="Property 'then' does not exist on type 'void'." source="TS2339" />
<error line="64" column="13" severity="error" message="Parameter 'result' implicitly has an 'any' type." source="TS7006" />
<error line="84" column="14" severity="error" message="Parameter 'error' implicitly has an 'any' type." source="TS7006" />
<error line="92" column="5" severity="error" message="Cannot find name 'receiveApplyingCoupon'." source="TS2304" />
<error line="98" column="5" severity="error" message="Property 'then' does not exist on type 'void'." source="TS2339" />
<error line="98" column="13" severity="error" message="Parameter 'result' implicitly has an 'any' type." source="TS7006" />
<error line="118" column="14" severity="error" message="Parameter 'error' implicitly has an 'any' type." source="TS7006" />
<error line="124" column="5" severity="error" message="Cannot find name 'receiveApplyingCoupon'." source="TS2304" />
</file>
<file name="assets/js/base/context/hooks/cart/use-store-cart-item-quantity.ts">
<error line="149" column="3" severity="error" message="Type '() => Promise<boolean> | Promise<void>' is not assignable to type '() => Promise<boolean>'.
Type 'Promise<boolean> | Promise<void>' is not assignable to type 'Promise<boolean>'.
Type 'Promise<void>' is not assignable to type 'Promise<boolean>'.
Type 'void' is not assignable to type 'boolean'." source="TS2322" />
</file>
<file name="assets/js/base/context/hooks/use-query-state.js">
<error line="28" column="13" severity="error" message="Generic type 'Array<T>' requires 1 type argument(s)." source="TS2314" />
<error line="131" column="5" severity="error" message="Argument of type 'Object | undefined' is not assignable to parameter of type 'any[] | ComparableObject'.
Type 'undefined' is not assignable to type 'any[] | ComparableObject'." source="TS2345" />
</file>
<file name="assets/js/base/context/hooks/collections/use-collection.ts">
<error line="103" column="35" severity="error" message="Cannot find name 'T'." source="TS2304" />
</file>
<file name="assets/js/base/context/hooks/collections/use-collection-data.ts">
<error line="87" column="7" severity="error" message="Parameter 'attribute' implicitly has an 'any' type." source="TS7006" />
</file>
<file name="assets/js/base/context/hooks/shipping/use-shipping-data.ts">
<error line="55" column="33" severity="error" message="Argument of type 'CartResponseShippingRate[]' is not assignable to parameter of type 'CartShippingRate[]'." source="TS2345" />
<error line="68" column="3" severity="error" message="Type 'CartResponseShippingRate[]' is not assignable to type 'CartShippingRate[]'.
Type 'CartResponseShippingRate' is not assignable to type 'CartShippingRate'.
Types of property 'package_id' are incompatible.
Type 'string | number' is not assignable to type 'number'.
Type 'string' is not assignable to type 'number'." source="TS2322" />
</file>
<file name="assets/js/base/context/hooks/use-checkout-notices.js">
<error line="12" column="56" severity="error" message="Namespace '"/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/types/type-defs/contexts"' has no exported member 'StoreNoticeObject'." source="TS2694" />
<error line="13" column="53" severity="error" message="Namespace '"/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/types/type-defs/hooks"' has no exported member 'CheckoutNotices'." source="TS2694" />
</file>
<file name="assets/js/base/context/providers/cart-checkout/shipping/constants.js">
<error line="2" column="56" severity="error" message="Namespace '"/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/types/type-defs/contexts"' has no exported member 'ShippingErrorTypes'." source="TS2694" />
<error line="3" column="56" severity="error" message="Namespace '"/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/types/type-defs/shipping"' has no exported member 'ShippingAddress'." source="TS2694" />
<error line="4" column="56" severity="error" message="Namespace '"/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/types/type-defs/contexts"' has no exported member 'ShippingDataContext'." source="TS2694" />
</file>
<file name="assets/js/base/context/providers/cart-checkout/shipping/utils.js">
<error line="6" column="44" severity="error" message="Parameter 'errors' implicitly has an 'any' type." source="TS7006" />
<error line="7" column="24" severity="error" message="Parameter 'error' implicitly has an 'any' type." source="TS7006" />
</file>
<file name="assets/js/base/context/providers/cart-checkout/shipping/event-emit.js">
<error line="25" column="65" severity="error" message="Argument of type 'Function' is not assignable to parameter of type 'Dispatch<ActionType>'.
Type 'Function' provides no match for the signature '(value: ActionType): void'." source="TS2345" />
<error line="26" column="59" severity="error" message="Argument of type 'Function' is not assignable to parameter of type 'Dispatch<ActionType>'." source="TS2345" />
<error line="29" column="3" severity="error" message="Argument of type 'Function' is not assignable to parameter of type 'Dispatch<ActionType>'." source="TS2345" />
<error line="33" column="3" severity="error" message="Argument of type 'Function' is not assignable to parameter of type 'Dispatch<ActionType>'." source="TS2345" />
</file>
<file name="assets/js/base/context/providers/cart-checkout/shipping/index.js">
<error line="32" column="56" severity="error" message="Namespace '"/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/types/type-defs/contexts"' has no exported member 'ShippingDataContext'." source="TS2694" />
<error line="67" column="42" severity="error" message="Property 'onSuccess' does not exist on type 'Object'." source="TS2339" />
<error line="68" column="61" severity="error" message="Property 'onFail' does not exist on type 'Object'." source="TS2339" />
<error line="70" column="42" severity="error" message="Property 'onSelectSuccess' does not exist on type 'Object'." source="TS2339" />
<error line="72" column="42" severity="error" message="Property 'onSelectFail' does not exist on type 'Object'." source="TS2339" />
</file>
<file name="assets/js/base/context/hooks/use-store-add-to-cart.ts">
<error line="93" column="3" severity="error" message="Type '(quantity?: number) => Promise<void>' is not assignable to type '(quantity?: number | undefined) => Promise<boolean>'.
Type 'Promise<void>' is not assignable to type 'Promise<boolean>'." source="TS2322" />
</file>
<file name="assets/js/base/context/providers/add-to-cart-form/form-state/actions.js">
<error line="42" column="27" severity="error" message="Parameter 'data' implicitly has an 'any' type." source="TS7006" />
<error line="50" column="17" severity="error" message="Parameter 'quantity' implicitly has an 'any' type." source="TS7006" />
<error line="54" column="22" severity="error" message="Parameter 'data' implicitly has an 'any' type." source="TS7006" />
</file>
<file name="assets/js/base/context/providers/add-to-cart-form/form-state/reducer.js">
<error line="46" column="11" severity="error" message="Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="55" column="11" severity="error" message="Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="64" column="24" severity="error" message="Property 'quantity' does not exist on type 'Object'." source="TS2339" />
<error line="75" column="15" severity="error" message="Property 'requestParams' does not exist on type 'Object'." source="TS2339" />
<error line="88" column="11" severity="error" message="Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="97" column="14" severity="error" message="Property 'hasError' does not exist on type 'Object | { status: string; hasError: boolean; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; }'.
Property 'hasError' does not exist on type 'Object'." source="TS2339" />
<error line="103" column="11" severity="error" message="Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="113" column="11" severity="error" message="Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="121" column="21" severity="error" message="Property 'hasError' does not exist on type 'Object'." source="TS2339" />
<error line="128" column="11" severity="error" message="Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="129" column="11" severity="error" message="Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="137" column="21" severity="error" message="Property 'hasError' does not exist on type 'Object'." source="TS2339" />
<error line="149" column="3" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="149" column="12" severity="error" message="Property 'status' does not exist on type 'Object | { status: string; hasError: boolean; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="151" column="3" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="151" column="12" severity="error" message="Property 'status' does not exist on type 'Object | { status: string; hasError: boolean; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'status' does not exist on type 'Object'." source="TS2339" />
</file>
<file name="assets/js/base/context/providers/add-to-cart-form/form-state/event-emit.js">
<error line="34" column="3" severity="error" message="Argument of type 'Function' is not assignable to parameter of type 'Dispatch<ActionType>'." source="TS2345" />
<error line="38" column="3" severity="error" message="Argument of type 'Function' is not assignable to parameter of type 'Dispatch<ActionType>'." source="TS2345" />
<error line="42" column="3" severity="error" message="Argument of type 'Function' is not assignable to parameter of type 'Dispatch<ActionType>'." source="TS2345" />
</file>
<file name="assets/js/base/context/providers/add-to-cart-form/form-state/index.js">
<error line="39" column="56" severity="error" message="Namespace '"/home/runner/work/woocommerce-blocks/woocommerce-blocks/assets/js/types/type-defs/contexts"' has no exported member 'AddToCartFormContext'." source="TS2694" />
<error line="60" column="44" severity="error" message="Parameter 'callback' implicitly has an 'any' type." source="TS7006" />
<error line="61" column="42" severity="error" message="Parameter 'callback' implicitly has an 'any' type." source="TS7006" />
<error line="62" column="34" severity="error" message="Parameter 'callback' implicitly has an 'any' type." source="TS7006" />
<error line="67" column="18" severity="error" message="Parameter 'quantity' implicitly has an 'any' type." source="TS7006" />
<error line="68" column="18" severity="error" message="Parameter 'hasError' implicitly has an 'any' type." source="TS7006" />
<error line="69" column="25" severity="error" message="Parameter 'response' implicitly has an 'any' type." source="TS7006" />
<error line="70" column="23" severity="error" message="Parameter 'data' implicitly has an 'any' type." source="TS7006" />
<error line="113" column="7" severity="error" message="Property 'onAddToCartAfterProcessingWithSuccess' does not exist on type 'Object'." source="TS2339" />
<error line="116" column="7" severity="error" message="Property 'onAddToCartAfterProcessingWithError' does not exist on type 'Object'." source="TS2339" />
<error line="119" column="7" severity="error" message="Property 'onAddToCartBeforeProcessing' does not exist on type 'Object'." source="TS2339" />
<error line="129" column="36" severity="error" message="Argument of type '{ type: string; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'.
Type '{ type: string; }' is missing the following properties from type '{ quantity: number; type: string; data: Object; }': quantity, data" source="TS2345" />
<error line="130" column="37" severity="error" message="Argument of type '{ type: string; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'.
Type '{ type: string; }' is missing the following properties from type '{ quantity: number; type: string; data: Object; }': quantity, data" source="TS2345" />
<error line="132" column="20" severity="error" message="Argument of type '{ type: string; quantity: any; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'.
Property 'data' is missing in type '{ type: string; quantity: any; }' but required in type '{ quantity: number; type: string; data: Object; }'." source="TS2345" />
<error line="134" column="20" severity="error" message="Argument of type '{ type: string; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'.
Type '{ type: string; }' is missing the following properties from type '{ quantity: number; type: string; data: Object; }': quantity, data" source="TS2345" />
<error line="136" column="20" severity="error" message="Argument of type '{ type: string; data: any; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'.
Property 'quantity' is missing in type '{ type: string; data: any; }' but required in type '{ quantity: number; type: string; data: Object; }'." source="TS2345" />
<error line="138" column="15" severity="error" message="Argument of type '{ type: string; data: any; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'.
Property 'quantity' is missing in type '{ type: string; data: any; }' but required in type '{ quantity: number; type: string; data: Object; }'." source="TS2345" />
<error line="139" column="20" severity="error" message="Argument of type '{ type: string; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'.
Type '{ type: string; }' is missing the following properties from type '{ quantity: number; type: string; data: Object; }': quantity, data" source="TS2345" />
<error line="149" column="18" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="149" column="37" severity="error" message="Property 'status' does not exist on type 'Object | { status: string; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="151" column="6" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="151" column="14" severity="error" message="Property 'id' does not exist on type 'Object'." source="TS2339" />
<error line="151" column="44" severity="error" message="Argument of type 'Object | undefined' is not assignable to parameter of type 'Object'.
Type 'undefined' is not assignable to type 'Object'." source="TS2345" />
<error line="154" column="14" severity="error" message="Argument of type '{ type: string; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'.
Type '{ type: string; }' is missing the following properties from type '{ quantity: number; type: string; data: Object; }': quantity, data" source="TS2345" />
<error line="156" column="14" severity="error" message="Argument of type '{ type: string; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'.
Type '{ type: string; }' is missing the following properties from type '{ quantity: number; type: string; data: Object; }': quantity, data" source="TS2345" />
<error line="158" column="7" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="158" column="26" severity="error" message="Property 'status' does not exist on type 'Object | { status: string; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="164" column="18" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="164" column="37" severity="error" message="Property 'status' does not exist on type 'Object | { status: string; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="188" column="16" severity="error" message="Argument of type '{ type: string; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'." source="TS2345" />
<error line="190" column="16" severity="error" message="Argument of type '{ type: string; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'.
Type '{ type: string; }' is missing the following properties from type '{ quantity: number; type: string; data: Object; }': quantity, data" source="TS2345" />
<error line="195" column="3" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="195" column="22" severity="error" message="Property 'status' does not exist on type 'Object | { status: string; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="200" column="12" severity="error" message="Property 'id' does not exist on type 'Object'." source="TS2339" />
<error line="207" column="8" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="207" column="27" severity="error" message="Property 'status' does not exist on type 'Object | { status: string; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="213" column="25" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="213" column="44" severity="error" message="Property 'processingResponse' does not exist on type 'Object | { status: string; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'processingResponse' does not exist on type 'Object'." source="TS2339" />
<error line="216" column="34" severity="error" message="Parameter 'observerResponses' implicitly has an 'any' type." source="TS7006" />
<error line="218" column="34" severity="error" message="Parameter 'response' implicitly has an 'any' type." source="TS7006" />
<error line="235" column="9" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="235" column="28" severity="error" message="Property 'hasError' does not exist on type 'Object | { status: string; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'hasError' does not exist on type 'Object'." source="TS2339" />
<error line="253" column="18" severity="error" message="Property 'id' does not exist on type 'Object'." source="TS2339" />
<error line="257" column="16" severity="error" message="Argument of type '{ type: string; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'." source="TS2345" />
<error line="271" column="16" severity="error" message="Argument of type '{ type: string; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'." source="TS2345" />
<error line="273" column="16" severity="error" message="Argument of type '{ type: string; }' is not assignable to parameter of type '{ quantity: number; type: string; data: Object; }'." source="TS2345" />
<error line="278" column="3" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="278" column="22" severity="error" message="Property 'status' does not exist on type 'Object | { status: string; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'status' does not exist on type 'Object'." source="TS2339" />
<error line="279" column="3" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="279" column="22" severity="error" message="Property 'hasError' does not exist on type 'Object | { status: string; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'hasError' does not exist on type 'Object'." source="TS2339" />
<error line="280" column="3" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="280" column="22" severity="error" message="Property 'processingResponse' does not exist on type 'Object | { status: string; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.
Property 'processingResponse' does not exist on type 'Object'." source="TS2339" />
<error line="284" column="12" severity="error" message="Property 'id' does not exist on type 'Object'." source="TS2339" />
<error line="287" column="61" severity="error" message="Argument of type 'Object | undefined' is not assignable to parameter of type 'Object'.
Type 'undefined' is not assignable to type 'Object'." source="TS2345" />
<error line="294" column="16" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="294" column="24" severity="error" message="Property 'type' does not exist on type 'Object'." source="TS2339" />
<error line="295" column="47" severity="error" message="Argument of type 'Object | undefined' is not assignable to parameter of type 'Object'.
Type 'undefined' is not assignable to type 'Object'." source="TS2345" />
<error line="296" column="22" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="296" column="30" severity="error" message="Property 'has_options' does not exist on type 'Object'." source="TS2339" />
<error line="300" column="4" severity="error" message="Object is possibly 'undefined'." source="TS2532" />
<error line="300" column="23" severity="error" message="Property 'quantity' does not exist on type 'Object | { status: string; constructor: Function; toString(): string; toLocaleString(): string; valueOf(): Object; hasOwnProperty(v: PropertyKey): boolean; isPrototypeOf(v: Object): boolean; propertyIsEnumerable(v: PropertyKey): boolean; } | ... 4 more ... | { ...; }'.