@bulletxyz/bullet-sdk 0.17.3-rc.6 → 0.17.4-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +1266 -1263
- package/dist/browser/index.js.map +4 -4
- package/dist/node/index.js +1269 -1266
- package/dist/node/index.js.map +4 -4
- package/dist/types/bullet-wasm/index.d.ts +37 -0
- package/dist/types/calc.d.ts +3 -3
- package/dist/types/client.d.ts +33 -29
- package/dist/types/connection.d.ts +2 -3
- package/dist/types/constants.d.ts +1 -1
- package/dist/types/exchange.d.ts +3 -3
- package/dist/types/orderbook.d.ts +3 -3
- package/dist/types/rollupTypes.d.ts +135 -0
- package/dist/types/types.d.ts +2 -15
- package/dist/types/wallet/nodeWallet.d.ts +2 -2
- package/dist/types/wallet/wallet.d.ts +2 -2
- package/dist/types/zod-types/rest.d.ts +82 -16
- package/dist/types/zod-types/wasm.d.ts +1 -13
- package/package.json +7 -3
- package/dist/types/test/wasm.d.ts +0 -1
- package/dist/types/zetax-wasm/wasm.d.ts +0 -1
|
@@ -418,22 +418,22 @@ export declare const Schemas: {
|
|
|
418
418
|
side: "Bid" | "Ask";
|
|
419
419
|
order_id: bigint;
|
|
420
420
|
reduce_only: boolean;
|
|
421
|
-
asset_id: number;
|
|
422
421
|
filled_size: import("decimal.js").Decimal;
|
|
423
422
|
average_filled_price: import("decimal.js").Decimal;
|
|
424
|
-
owner: string;
|
|
425
423
|
tpsl_order_ids: bigint[];
|
|
424
|
+
asset_id: number;
|
|
425
|
+
owner: string;
|
|
426
426
|
}, {
|
|
427
427
|
size: string | number;
|
|
428
428
|
price: string | number;
|
|
429
429
|
side: "Bid" | "Ask";
|
|
430
430
|
order_id: bigint;
|
|
431
431
|
reduce_only: boolean;
|
|
432
|
-
asset_id: number;
|
|
433
432
|
filled_size: string | number;
|
|
434
433
|
average_filled_price: string | number;
|
|
435
|
-
owner: string;
|
|
436
434
|
tpsl_order_ids: bigint[];
|
|
435
|
+
asset_id: number;
|
|
436
|
+
owner: string;
|
|
437
437
|
}>;
|
|
438
438
|
readonly Orderbook: z.ZodObject<{
|
|
439
439
|
asset_id: z.ZodNumber;
|
|
@@ -631,18 +631,27 @@ export declare const Schemas: {
|
|
|
631
631
|
side: z.ZodEnum<["Bid", "Ask"]>;
|
|
632
632
|
order_id: z.ZodBigInt;
|
|
633
633
|
reduce_only: z.ZodBoolean;
|
|
634
|
+
filled_size: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, import("decimal.js").Decimal, string | number>;
|
|
635
|
+
average_filled_price: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, import("decimal.js").Decimal, string | number>;
|
|
636
|
+
tpsl_order_ids: z.ZodArray<z.ZodBigInt, "many">;
|
|
634
637
|
}, "strip", z.ZodTypeAny, {
|
|
635
638
|
size: import("decimal.js").Decimal;
|
|
636
639
|
price: import("decimal.js").Decimal;
|
|
637
640
|
side: "Bid" | "Ask";
|
|
638
641
|
order_id: bigint;
|
|
639
642
|
reduce_only: boolean;
|
|
643
|
+
filled_size: import("decimal.js").Decimal;
|
|
644
|
+
average_filled_price: import("decimal.js").Decimal;
|
|
645
|
+
tpsl_order_ids: bigint[];
|
|
640
646
|
}, {
|
|
641
647
|
size: string | number;
|
|
642
648
|
price: string | number;
|
|
643
649
|
side: "Bid" | "Ask";
|
|
644
650
|
order_id: bigint;
|
|
645
651
|
reduce_only: boolean;
|
|
652
|
+
filled_size: string | number;
|
|
653
|
+
average_filled_price: string | number;
|
|
654
|
+
tpsl_order_ids: bigint[];
|
|
646
655
|
}>, "many">;
|
|
647
656
|
position: z.ZodObject<{
|
|
648
657
|
size: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, import("decimal.js").Decimal, string | number>;
|
|
@@ -714,6 +723,9 @@ export declare const Schemas: {
|
|
|
714
723
|
side: "Bid" | "Ask";
|
|
715
724
|
order_id: bigint;
|
|
716
725
|
reduce_only: boolean;
|
|
726
|
+
filled_size: import("decimal.js").Decimal;
|
|
727
|
+
average_filled_price: import("decimal.js").Decimal;
|
|
728
|
+
tpsl_order_ids: bigint[];
|
|
717
729
|
}[];
|
|
718
730
|
position: {
|
|
719
731
|
size: import("decimal.js").Decimal;
|
|
@@ -745,6 +757,9 @@ export declare const Schemas: {
|
|
|
745
757
|
side: "Bid" | "Ask";
|
|
746
758
|
order_id: bigint;
|
|
747
759
|
reduce_only: boolean;
|
|
760
|
+
filled_size: string | number;
|
|
761
|
+
average_filled_price: string | number;
|
|
762
|
+
tpsl_order_ids: bigint[];
|
|
748
763
|
}[];
|
|
749
764
|
position: {
|
|
750
765
|
size: string | number;
|
|
@@ -776,6 +791,9 @@ export declare const Schemas: {
|
|
|
776
791
|
side: "Bid" | "Ask";
|
|
777
792
|
order_id: bigint;
|
|
778
793
|
reduce_only: boolean;
|
|
794
|
+
filled_size: import("decimal.js").Decimal;
|
|
795
|
+
average_filled_price: import("decimal.js").Decimal;
|
|
796
|
+
tpsl_order_ids: bigint[];
|
|
779
797
|
}[];
|
|
780
798
|
position: {
|
|
781
799
|
size: import("decimal.js").Decimal;
|
|
@@ -807,6 +825,9 @@ export declare const Schemas: {
|
|
|
807
825
|
side: "Bid" | "Ask";
|
|
808
826
|
order_id: bigint;
|
|
809
827
|
reduce_only: boolean;
|
|
828
|
+
filled_size: string | number;
|
|
829
|
+
average_filled_price: string | number;
|
|
830
|
+
tpsl_order_ids: bigint[];
|
|
810
831
|
}[];
|
|
811
832
|
position: {
|
|
812
833
|
size: string | number;
|
|
@@ -862,6 +883,9 @@ export declare const Schemas: {
|
|
|
862
883
|
side: "Bid" | "Ask";
|
|
863
884
|
order_id: bigint;
|
|
864
885
|
reduce_only: boolean;
|
|
886
|
+
filled_size: import("decimal.js").Decimal;
|
|
887
|
+
average_filled_price: import("decimal.js").Decimal;
|
|
888
|
+
tpsl_order_ids: bigint[];
|
|
865
889
|
}[];
|
|
866
890
|
position: {
|
|
867
891
|
size: import("decimal.js").Decimal;
|
|
@@ -917,6 +941,9 @@ export declare const Schemas: {
|
|
|
917
941
|
side: "Bid" | "Ask";
|
|
918
942
|
order_id: bigint;
|
|
919
943
|
reduce_only: boolean;
|
|
944
|
+
filled_size: string | number;
|
|
945
|
+
average_filled_price: string | number;
|
|
946
|
+
tpsl_order_ids: bigint[];
|
|
920
947
|
}[];
|
|
921
948
|
position: {
|
|
922
949
|
size: string | number;
|
|
@@ -1289,22 +1316,22 @@ export declare const ResponseSchemas: {
|
|
|
1289
1316
|
side: "Bid" | "Ask";
|
|
1290
1317
|
order_id: bigint;
|
|
1291
1318
|
reduce_only: boolean;
|
|
1292
|
-
asset_id: number;
|
|
1293
1319
|
filled_size: import("decimal.js").Decimal;
|
|
1294
1320
|
average_filled_price: import("decimal.js").Decimal;
|
|
1295
|
-
owner: string;
|
|
1296
1321
|
tpsl_order_ids: bigint[];
|
|
1322
|
+
asset_id: number;
|
|
1323
|
+
owner: string;
|
|
1297
1324
|
}, {
|
|
1298
1325
|
size: string | number;
|
|
1299
1326
|
price: string | number;
|
|
1300
1327
|
side: "Bid" | "Ask";
|
|
1301
1328
|
order_id: bigint;
|
|
1302
1329
|
reduce_only: boolean;
|
|
1303
|
-
asset_id: number;
|
|
1304
1330
|
filled_size: string | number;
|
|
1305
1331
|
average_filled_price: string | number;
|
|
1306
|
-
owner: string;
|
|
1307
1332
|
tpsl_order_ids: bigint[];
|
|
1333
|
+
asset_id: number;
|
|
1334
|
+
owner: string;
|
|
1308
1335
|
}>>;
|
|
1309
1336
|
}, "strip", z.ZodTypeAny, {
|
|
1310
1337
|
value: {
|
|
@@ -1313,11 +1340,11 @@ export declare const ResponseSchemas: {
|
|
|
1313
1340
|
side: "Bid" | "Ask";
|
|
1314
1341
|
order_id: bigint;
|
|
1315
1342
|
reduce_only: boolean;
|
|
1316
|
-
asset_id: number;
|
|
1317
1343
|
filled_size: import("decimal.js").Decimal;
|
|
1318
1344
|
average_filled_price: import("decimal.js").Decimal;
|
|
1319
|
-
owner: string;
|
|
1320
1345
|
tpsl_order_ids: bigint[];
|
|
1346
|
+
asset_id: number;
|
|
1347
|
+
owner: string;
|
|
1321
1348
|
} | null;
|
|
1322
1349
|
key: bigint;
|
|
1323
1350
|
}, {
|
|
@@ -1327,11 +1354,11 @@ export declare const ResponseSchemas: {
|
|
|
1327
1354
|
side: "Bid" | "Ask";
|
|
1328
1355
|
order_id: bigint;
|
|
1329
1356
|
reduce_only: boolean;
|
|
1330
|
-
asset_id: number;
|
|
1331
1357
|
filled_size: string | number;
|
|
1332
1358
|
average_filled_price: string | number;
|
|
1333
|
-
owner: string;
|
|
1334
1359
|
tpsl_order_ids: bigint[];
|
|
1360
|
+
asset_id: number;
|
|
1361
|
+
owner: string;
|
|
1335
1362
|
} | null;
|
|
1336
1363
|
key: bigint;
|
|
1337
1364
|
}>;
|
|
@@ -1344,11 +1371,11 @@ export declare const ResponseSchemas: {
|
|
|
1344
1371
|
side: "Bid" | "Ask";
|
|
1345
1372
|
order_id: bigint;
|
|
1346
1373
|
reduce_only: boolean;
|
|
1347
|
-
asset_id: number;
|
|
1348
1374
|
filled_size: import("decimal.js").Decimal;
|
|
1349
1375
|
average_filled_price: import("decimal.js").Decimal;
|
|
1350
|
-
owner: string;
|
|
1351
1376
|
tpsl_order_ids: bigint[];
|
|
1377
|
+
asset_id: number;
|
|
1378
|
+
owner: string;
|
|
1352
1379
|
} | null;
|
|
1353
1380
|
key: bigint;
|
|
1354
1381
|
};
|
|
@@ -1361,11 +1388,11 @@ export declare const ResponseSchemas: {
|
|
|
1361
1388
|
side: "Bid" | "Ask";
|
|
1362
1389
|
order_id: bigint;
|
|
1363
1390
|
reduce_only: boolean;
|
|
1364
|
-
asset_id: number;
|
|
1365
1391
|
filled_size: string | number;
|
|
1366
1392
|
average_filled_price: string | number;
|
|
1367
|
-
owner: string;
|
|
1368
1393
|
tpsl_order_ids: bigint[];
|
|
1394
|
+
asset_id: number;
|
|
1395
|
+
owner: string;
|
|
1369
1396
|
} | null;
|
|
1370
1397
|
key: bigint;
|
|
1371
1398
|
};
|
|
@@ -1491,18 +1518,27 @@ export declare const ResponseSchemas: {
|
|
|
1491
1518
|
side: z.ZodEnum<["Bid", "Ask"]>;
|
|
1492
1519
|
order_id: z.ZodBigInt;
|
|
1493
1520
|
reduce_only: z.ZodBoolean;
|
|
1521
|
+
filled_size: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, import("decimal.js").Decimal, string | number>;
|
|
1522
|
+
average_filled_price: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, import("decimal.js").Decimal, string | number>;
|
|
1523
|
+
tpsl_order_ids: z.ZodArray<z.ZodBigInt, "many">;
|
|
1494
1524
|
}, "strip", z.ZodTypeAny, {
|
|
1495
1525
|
size: import("decimal.js").Decimal;
|
|
1496
1526
|
price: import("decimal.js").Decimal;
|
|
1497
1527
|
side: "Bid" | "Ask";
|
|
1498
1528
|
order_id: bigint;
|
|
1499
1529
|
reduce_only: boolean;
|
|
1530
|
+
filled_size: import("decimal.js").Decimal;
|
|
1531
|
+
average_filled_price: import("decimal.js").Decimal;
|
|
1532
|
+
tpsl_order_ids: bigint[];
|
|
1500
1533
|
}, {
|
|
1501
1534
|
size: string | number;
|
|
1502
1535
|
price: string | number;
|
|
1503
1536
|
side: "Bid" | "Ask";
|
|
1504
1537
|
order_id: bigint;
|
|
1505
1538
|
reduce_only: boolean;
|
|
1539
|
+
filled_size: string | number;
|
|
1540
|
+
average_filled_price: string | number;
|
|
1541
|
+
tpsl_order_ids: bigint[];
|
|
1506
1542
|
}>, "many">;
|
|
1507
1543
|
position: z.ZodObject<{
|
|
1508
1544
|
size: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, import("decimal.js").Decimal, string | number>;
|
|
@@ -1574,6 +1610,9 @@ export declare const ResponseSchemas: {
|
|
|
1574
1610
|
side: "Bid" | "Ask";
|
|
1575
1611
|
order_id: bigint;
|
|
1576
1612
|
reduce_only: boolean;
|
|
1613
|
+
filled_size: import("decimal.js").Decimal;
|
|
1614
|
+
average_filled_price: import("decimal.js").Decimal;
|
|
1615
|
+
tpsl_order_ids: bigint[];
|
|
1577
1616
|
}[];
|
|
1578
1617
|
position: {
|
|
1579
1618
|
size: import("decimal.js").Decimal;
|
|
@@ -1605,6 +1644,9 @@ export declare const ResponseSchemas: {
|
|
|
1605
1644
|
side: "Bid" | "Ask";
|
|
1606
1645
|
order_id: bigint;
|
|
1607
1646
|
reduce_only: boolean;
|
|
1647
|
+
filled_size: string | number;
|
|
1648
|
+
average_filled_price: string | number;
|
|
1649
|
+
tpsl_order_ids: bigint[];
|
|
1608
1650
|
}[];
|
|
1609
1651
|
position: {
|
|
1610
1652
|
size: string | number;
|
|
@@ -1636,6 +1678,9 @@ export declare const ResponseSchemas: {
|
|
|
1636
1678
|
side: "Bid" | "Ask";
|
|
1637
1679
|
order_id: bigint;
|
|
1638
1680
|
reduce_only: boolean;
|
|
1681
|
+
filled_size: import("decimal.js").Decimal;
|
|
1682
|
+
average_filled_price: import("decimal.js").Decimal;
|
|
1683
|
+
tpsl_order_ids: bigint[];
|
|
1639
1684
|
}[];
|
|
1640
1685
|
position: {
|
|
1641
1686
|
size: import("decimal.js").Decimal;
|
|
@@ -1667,6 +1712,9 @@ export declare const ResponseSchemas: {
|
|
|
1667
1712
|
side: "Bid" | "Ask";
|
|
1668
1713
|
order_id: bigint;
|
|
1669
1714
|
reduce_only: boolean;
|
|
1715
|
+
filled_size: string | number;
|
|
1716
|
+
average_filled_price: string | number;
|
|
1717
|
+
tpsl_order_ids: bigint[];
|
|
1670
1718
|
}[];
|
|
1671
1719
|
position: {
|
|
1672
1720
|
size: string | number;
|
|
@@ -1722,6 +1770,9 @@ export declare const ResponseSchemas: {
|
|
|
1722
1770
|
side: "Bid" | "Ask";
|
|
1723
1771
|
order_id: bigint;
|
|
1724
1772
|
reduce_only: boolean;
|
|
1773
|
+
filled_size: import("decimal.js").Decimal;
|
|
1774
|
+
average_filled_price: import("decimal.js").Decimal;
|
|
1775
|
+
tpsl_order_ids: bigint[];
|
|
1725
1776
|
}[];
|
|
1726
1777
|
position: {
|
|
1727
1778
|
size: import("decimal.js").Decimal;
|
|
@@ -1777,6 +1828,9 @@ export declare const ResponseSchemas: {
|
|
|
1777
1828
|
side: "Bid" | "Ask";
|
|
1778
1829
|
order_id: bigint;
|
|
1779
1830
|
reduce_only: boolean;
|
|
1831
|
+
filled_size: string | number;
|
|
1832
|
+
average_filled_price: string | number;
|
|
1833
|
+
tpsl_order_ids: bigint[];
|
|
1780
1834
|
}[];
|
|
1781
1835
|
position: {
|
|
1782
1836
|
size: string | number;
|
|
@@ -1834,6 +1888,9 @@ export declare const ResponseSchemas: {
|
|
|
1834
1888
|
side: "Bid" | "Ask";
|
|
1835
1889
|
order_id: bigint;
|
|
1836
1890
|
reduce_only: boolean;
|
|
1891
|
+
filled_size: import("decimal.js").Decimal;
|
|
1892
|
+
average_filled_price: import("decimal.js").Decimal;
|
|
1893
|
+
tpsl_order_ids: bigint[];
|
|
1837
1894
|
}[];
|
|
1838
1895
|
position: {
|
|
1839
1896
|
size: import("decimal.js").Decimal;
|
|
@@ -1891,6 +1948,9 @@ export declare const ResponseSchemas: {
|
|
|
1891
1948
|
side: "Bid" | "Ask";
|
|
1892
1949
|
order_id: bigint;
|
|
1893
1950
|
reduce_only: boolean;
|
|
1951
|
+
filled_size: string | number;
|
|
1952
|
+
average_filled_price: string | number;
|
|
1953
|
+
tpsl_order_ids: bigint[];
|
|
1894
1954
|
}[];
|
|
1895
1955
|
position: {
|
|
1896
1956
|
size: string | number;
|
|
@@ -1951,6 +2011,9 @@ export declare const ResponseSchemas: {
|
|
|
1951
2011
|
side: "Bid" | "Ask";
|
|
1952
2012
|
order_id: bigint;
|
|
1953
2013
|
reduce_only: boolean;
|
|
2014
|
+
filled_size: import("decimal.js").Decimal;
|
|
2015
|
+
average_filled_price: import("decimal.js").Decimal;
|
|
2016
|
+
tpsl_order_ids: bigint[];
|
|
1954
2017
|
}[];
|
|
1955
2018
|
position: {
|
|
1956
2019
|
size: import("decimal.js").Decimal;
|
|
@@ -2011,6 +2074,9 @@ export declare const ResponseSchemas: {
|
|
|
2011
2074
|
side: "Bid" | "Ask";
|
|
2012
2075
|
order_id: bigint;
|
|
2013
2076
|
reduce_only: boolean;
|
|
2077
|
+
filled_size: string | number;
|
|
2078
|
+
average_filled_price: string | number;
|
|
2079
|
+
tpsl_order_ids: bigint[];
|
|
2014
2080
|
}[];
|
|
2015
2081
|
position: {
|
|
2016
2082
|
size: string | number;
|
|
@@ -10,7 +10,7 @@ export declare const WasmResponseSchemas: {
|
|
|
10
10
|
current: string | number;
|
|
11
11
|
updated: string | number;
|
|
12
12
|
}>;
|
|
13
|
-
PositionAdditionalMetadataSchema: z.
|
|
13
|
+
PositionAdditionalMetadataSchema: z.ZodMap<z.ZodNumber, z.ZodObject<{
|
|
14
14
|
projected_funding_payment: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, import("decimal.js").Decimal, string | number>;
|
|
15
15
|
unrealized_pnl: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, import("decimal.js").Decimal, string | number>;
|
|
16
16
|
liquidation_price: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, import("decimal.js").Decimal, string | number>;
|
|
@@ -28,18 +28,6 @@ export declare const WasmResponseSchemas: {
|
|
|
28
28
|
liquidation_price: string | number;
|
|
29
29
|
liquidation_risk_percentage: string | number;
|
|
30
30
|
max_leverage_to_use: number;
|
|
31
|
-
}>>, Map<number, {
|
|
32
|
-
projected_funding_payment: import("decimal.js").Decimal;
|
|
33
|
-
unrealized_pnl: import("decimal.js").Decimal;
|
|
34
|
-
liquidation_price: import("decimal.js").Decimal;
|
|
35
|
-
liquidation_risk_percentage: import("decimal.js").Decimal;
|
|
36
|
-
max_leverage_to_use: number;
|
|
37
|
-
}>, Record<string, {
|
|
38
|
-
projected_funding_payment: string | number;
|
|
39
|
-
unrealized_pnl: string | number;
|
|
40
|
-
liquidation_price: string | number;
|
|
41
|
-
liquidation_risk_percentage: string | number;
|
|
42
|
-
max_leverage_to_use: number;
|
|
43
31
|
}>>;
|
|
44
32
|
BorrowLendMarketAdditionalMetadataSchema: z.ZodObject<{
|
|
45
33
|
utilisation_rate: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, import("decimal.js").Decimal, string | number>;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/zetamarkets/bullet-sdk.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.17.
|
|
7
|
+
"version": "0.17.4-rc.0",
|
|
8
8
|
"description": "Bullet SDK",
|
|
9
9
|
"author": "@bulletxyz",
|
|
10
10
|
"license": "Apache-2.0",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
|
-
"build:types": "tsc --emitDeclarationOnly --outDir dist/types",
|
|
30
|
+
"build:types": "tsc --emitDeclarationOnly --outDir dist/types && mkdir -p dist/types/bullet-wasm && cp src/bullet-wasm/index.d.ts dist/types/bullet-wasm/index.d.ts",
|
|
31
31
|
"build:js": "node build.mjs",
|
|
32
32
|
"clean": "rm -rf dist",
|
|
33
33
|
"build": "pnpm clean && pnpm install && pnpm build:types && pnpm build:js",
|
|
@@ -42,9 +42,13 @@
|
|
|
42
42
|
"release:release": "npm run release:patch",
|
|
43
43
|
"release:major": "npm version major && git push --tags && npm publish",
|
|
44
44
|
"release:minor": "npm version minor && git push --tags && npm publish",
|
|
45
|
-
"release:patch": "npm version patch && git push --tags && npm publish"
|
|
45
|
+
"release:patch": "npm version patch && git push --tags && npm publish",
|
|
46
|
+
"ci": "biome ci",
|
|
47
|
+
"fix": "biome check --write",
|
|
48
|
+
"lint": "biome lint"
|
|
46
49
|
},
|
|
47
50
|
"devDependencies": {
|
|
51
|
+
"@biomejs/biome": "^1.9.4",
|
|
48
52
|
"@eslint/js": "^9.22.0",
|
|
49
53
|
"@types/collections": "^5.1.5",
|
|
50
54
|
"@types/node": "^22.13.10",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|