@idlizer/core 2.1.7 → 2.1.9-arktscgen-4

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.
Files changed (62) hide show
  1. package/build/lib/src/IndentedPrinter.js +2 -0
  2. package/build/lib/src/Language.d.ts +1 -0
  3. package/build/lib/src/Language.js +3 -0
  4. package/build/lib/src/LanguageWriters/ArgConvertors.d.ts +18 -3
  5. package/build/lib/src/LanguageWriters/ArgConvertors.js +154 -23
  6. package/build/lib/src/LanguageWriters/LanguageWriter.d.ts +29 -4
  7. package/build/lib/src/LanguageWriters/LanguageWriter.js +42 -0
  8. package/build/lib/src/LanguageWriters/convertors/CJConvertors.js +23 -10
  9. package/build/lib/src/LanguageWriters/convertors/KotlinConvertor.d.ts +24 -0
  10. package/build/lib/src/LanguageWriters/convertors/KotlinConvertor.js +69 -0
  11. package/build/lib/src/LanguageWriters/convertors/KotlinConvertors.d.ts +25 -0
  12. package/build/lib/src/LanguageWriters/convertors/KotlinConvertors.js +128 -0
  13. package/build/lib/src/LanguageWriters/index.js +4 -0
  14. package/build/lib/src/LanguageWriters/writers/CJLanguageWriter.d.ts +5 -5
  15. package/build/lib/src/LanguageWriters/writers/CJLanguageWriter.js +25 -23
  16. package/build/lib/src/LanguageWriters/writers/CLikeLanguageWriter.d.ts +1 -1
  17. package/build/lib/src/LanguageWriters/writers/CppLanguageWriter.d.ts +11 -2
  18. package/build/lib/src/LanguageWriters/writers/CppLanguageWriter.js +43 -10
  19. package/build/lib/src/LanguageWriters/writers/ETSLanguageWriter.d.ts +2 -2
  20. package/build/lib/src/LanguageWriters/writers/ETSLanguageWriter.js +20 -11
  21. package/build/lib/src/LanguageWriters/writers/JavaLanguageWriter.d.ts +2 -2
  22. package/build/lib/src/LanguageWriters/writers/JavaLanguageWriter.js +3 -3
  23. package/build/lib/src/LanguageWriters/writers/KotlinLanguageWriter.d.ts +149 -0
  24. package/build/lib/src/LanguageWriters/writers/KotlinLanguageWriter.js +495 -0
  25. package/build/lib/src/LanguageWriters/writers/TsLanguageWriter.d.ts +2 -2
  26. package/build/lib/src/LanguageWriters/writers/TsLanguageWriter.js +6 -4
  27. package/build/lib/src/LibraryInterface.d.ts +2 -0
  28. package/build/lib/src/config.d.ts +132 -66
  29. package/build/lib/src/config.js +4 -2
  30. package/build/lib/src/configDescriber.d.ts +1 -1
  31. package/build/lib/src/configDescriber.js +1 -1
  32. package/build/lib/src/from-idl/DtsPrinter.js +10 -7
  33. package/build/lib/src/from-idl/IDLLinter.d.ts +0 -1
  34. package/build/lib/src/from-idl/IDLLinter.js +0 -6
  35. package/build/lib/src/from-idl/deserialize.js +7 -21
  36. package/build/lib/src/idl.d.ts +4 -13
  37. package/build/lib/src/idl.js +24 -58
  38. package/build/lib/src/idlize.js +2 -0
  39. package/build/lib/src/index.d.ts +2 -0
  40. package/build/lib/src/index.js +2 -0
  41. package/build/lib/src/peer-generation/LayoutManager.d.ts +4 -1
  42. package/build/lib/src/peer-generation/LayoutManager.js +5 -1
  43. package/build/lib/src/peer-generation/Materialized.d.ts +7 -3
  44. package/build/lib/src/peer-generation/Materialized.js +17 -3
  45. package/build/lib/src/peer-generation/PeerLibrary.d.ts +5 -2
  46. package/build/lib/src/peer-generation/PeerLibrary.js +26 -6
  47. package/build/lib/src/peer-generation/PeerMethod.d.ts +1 -1
  48. package/build/lib/src/peer-generation/getSuperType.d.ts +5 -0
  49. package/build/lib/src/peer-generation/getSuperType.js +55 -0
  50. package/build/lib/src/peer-generation/idl/IdlNameConvertor.d.ts +4 -0
  51. package/build/lib/src/peer-generation/idl/IdlNameConvertor.js +7 -0
  52. package/build/lib/src/peer-generation/idl/common.js +1 -1
  53. package/build/lib/src/peer-generation/isExternalType.d.ts +4 -0
  54. package/build/lib/src/peer-generation/isExternalType.js +15 -0
  55. package/build/lib/src/peer-generation/isMaterialized.js +15 -7
  56. package/build/lib/src/util.d.ts +2 -0
  57. package/build/lib/src/util.js +17 -7
  58. package/build/lib/src/visitor.js +0 -1
  59. package/package.json +2 -2
  60. package/webidl2.js/LICENSE +0 -21
  61. package/webidl2.js/README.md +0 -827
  62. package/webidl2.js/dist/package.json +0 -3
@@ -747,7 +747,8 @@ export declare const CoreConfigurationSchema: {
747
747
  readonly hooks: Map<string, Map<string, {
748
748
  readonly hookName: string;
749
749
  }>>;
750
- readonly externalModuleTypes: Map<string, string>;
750
+ readonly externalTypes: Map<string, string>;
751
+ readonly externalPackages: string[];
751
752
  readonly moduleName: string;
752
753
  readonly modules: Map<string, {
753
754
  readonly name: string;
@@ -773,7 +774,8 @@ export declare const CoreConfigurationSchema: {
773
774
  readonly hooks: Map<string, Map<string, {
774
775
  readonly hookName: string;
775
776
  }>>;
776
- readonly externalModuleTypes: Map<string, string>;
777
+ readonly externalTypes: Map<string, string>;
778
+ readonly externalPackages: string[];
777
779
  readonly moduleName: string;
778
780
  readonly modules: Map<string, {
779
781
  readonly name: string;
@@ -799,7 +801,8 @@ export declare const CoreConfigurationSchema: {
799
801
  readonly hooks: Map<string, Map<string, {
800
802
  readonly hookName: string;
801
803
  }>>;
802
- readonly externalModuleTypes: Map<string, string>;
804
+ readonly externalTypes: Map<string, string>;
805
+ readonly externalPackages: string[];
803
806
  readonly moduleName: string;
804
807
  readonly modules: Map<string, {
805
808
  readonly name: string;
@@ -825,7 +828,8 @@ export declare const CoreConfigurationSchema: {
825
828
  readonly hooks: Map<string, Map<string, {
826
829
  readonly hookName: string;
827
830
  }>>;
828
- readonly externalModuleTypes: Map<string, string>;
831
+ readonly externalTypes: Map<string, string>;
832
+ readonly externalPackages: string[];
829
833
  readonly moduleName: string;
830
834
  readonly modules: Map<string, {
831
835
  readonly name: string;
@@ -851,7 +855,8 @@ export declare const CoreConfigurationSchema: {
851
855
  readonly hooks: Map<string, Map<string, {
852
856
  readonly hookName: string;
853
857
  }>>;
854
- readonly externalModuleTypes: Map<string, string>;
858
+ readonly externalTypes: Map<string, string>;
859
+ readonly externalPackages: string[];
855
860
  readonly moduleName: string;
856
861
  readonly modules: Map<string, {
857
862
  readonly name: string;
@@ -877,7 +882,8 @@ export declare const CoreConfigurationSchema: {
877
882
  readonly hooks: Map<string, Map<string, {
878
883
  readonly hookName: string;
879
884
  }>>;
880
- readonly externalModuleTypes: Map<string, string>;
885
+ readonly externalTypes: Map<string, string>;
886
+ readonly externalPackages: string[];
881
887
  readonly moduleName: string;
882
888
  readonly modules: Map<string, {
883
889
  readonly name: string;
@@ -903,7 +909,8 @@ export declare const CoreConfigurationSchema: {
903
909
  readonly hooks: Map<string, Map<string, {
904
910
  readonly hookName: string;
905
911
  }>>;
906
- readonly externalModuleTypes: Map<string, string>;
912
+ readonly externalTypes: Map<string, string>;
913
+ readonly externalPackages: string[];
907
914
  readonly moduleName: string;
908
915
  readonly modules: Map<string, {
909
916
  readonly name: string;
@@ -929,7 +936,8 @@ export declare const CoreConfigurationSchema: {
929
936
  readonly hooks: Map<string, Map<string, {
930
937
  readonly hookName: string;
931
938
  }>>;
932
- readonly externalModuleTypes: Map<string, string>;
939
+ readonly externalTypes: Map<string, string>;
940
+ readonly externalPackages: string[];
933
941
  readonly moduleName: string;
934
942
  readonly modules: Map<string, {
935
943
  readonly name: string;
@@ -955,7 +963,8 @@ export declare const CoreConfigurationSchema: {
955
963
  readonly hooks: Map<string, Map<string, {
956
964
  readonly hookName: string;
957
965
  }>>;
958
- readonly externalModuleTypes: Map<string, string>;
966
+ readonly externalTypes: Map<string, string>;
967
+ readonly externalPackages: string[];
959
968
  readonly moduleName: string;
960
969
  readonly modules: Map<string, {
961
970
  readonly name: string;
@@ -981,7 +990,8 @@ export declare const CoreConfigurationSchema: {
981
990
  readonly hooks: Map<string, Map<string, {
982
991
  readonly hookName: string;
983
992
  }>>;
984
- readonly externalModuleTypes: Map<string, string>;
993
+ readonly externalTypes: Map<string, string>;
994
+ readonly externalPackages: string[];
985
995
  readonly moduleName: string;
986
996
  readonly modules: Map<string, {
987
997
  readonly name: string;
@@ -1007,7 +1017,8 @@ export declare const CoreConfigurationSchema: {
1007
1017
  readonly hooks: Map<string, Map<string, {
1008
1018
  readonly hookName: string;
1009
1019
  }>>;
1010
- readonly externalModuleTypes: Map<string, string>;
1020
+ readonly externalTypes: Map<string, string>;
1021
+ readonly externalPackages: string[];
1011
1022
  readonly moduleName: string;
1012
1023
  readonly modules: Map<string, {
1013
1024
  readonly name: string;
@@ -1033,7 +1044,8 @@ export declare const CoreConfigurationSchema: {
1033
1044
  readonly hooks: Map<string, Map<string, {
1034
1045
  readonly hookName: string;
1035
1046
  }>>;
1036
- readonly externalModuleTypes: Map<string, string>;
1047
+ readonly externalTypes: Map<string, string>;
1048
+ readonly externalPackages: string[];
1037
1049
  readonly moduleName: string;
1038
1050
  readonly modules: Map<string, {
1039
1051
  readonly name: string;
@@ -1059,7 +1071,8 @@ export declare const CoreConfigurationSchema: {
1059
1071
  readonly hooks: Map<string, Map<string, {
1060
1072
  readonly hookName: string;
1061
1073
  }>>;
1062
- readonly externalModuleTypes: Map<string, string>;
1074
+ readonly externalTypes: Map<string, string>;
1075
+ readonly externalPackages: string[];
1063
1076
  readonly moduleName: string;
1064
1077
  readonly modules: Map<string, {
1065
1078
  readonly name: string;
@@ -1085,7 +1098,8 @@ export declare const CoreConfigurationSchema: {
1085
1098
  readonly hooks: Map<string, Map<string, {
1086
1099
  readonly hookName: string;
1087
1100
  }>>;
1088
- readonly externalModuleTypes: Map<string, string>;
1101
+ readonly externalTypes: Map<string, string>;
1102
+ readonly externalPackages: string[];
1089
1103
  readonly moduleName: string;
1090
1104
  readonly modules: Map<string, {
1091
1105
  readonly name: string;
@@ -1111,7 +1125,8 @@ export declare const CoreConfigurationSchema: {
1111
1125
  readonly hooks: Map<string, Map<string, {
1112
1126
  readonly hookName: string;
1113
1127
  }>>;
1114
- readonly externalModuleTypes: Map<string, string>;
1128
+ readonly externalTypes: Map<string, string>;
1129
+ readonly externalPackages: string[];
1115
1130
  readonly moduleName: string;
1116
1131
  readonly modules: Map<string, {
1117
1132
  readonly name: string;
@@ -1137,7 +1152,8 @@ export declare const CoreConfigurationSchema: {
1137
1152
  readonly hooks: Map<string, Map<string, {
1138
1153
  readonly hookName: string;
1139
1154
  }>>;
1140
- readonly externalModuleTypes: Map<string, string>;
1155
+ readonly externalTypes: Map<string, string>;
1156
+ readonly externalPackages: string[];
1141
1157
  readonly moduleName: string;
1142
1158
  readonly modules: Map<string, {
1143
1159
  readonly name: string;
@@ -1163,7 +1179,8 @@ export declare const CoreConfigurationSchema: {
1163
1179
  readonly hooks: Map<string, Map<string, {
1164
1180
  readonly hookName: string;
1165
1181
  }>>;
1166
- readonly externalModuleTypes: Map<string, string>;
1182
+ readonly externalTypes: Map<string, string>;
1183
+ readonly externalPackages: string[];
1167
1184
  readonly moduleName: string;
1168
1185
  readonly modules: Map<string, {
1169
1186
  readonly name: string;
@@ -1189,7 +1206,8 @@ export declare const CoreConfigurationSchema: {
1189
1206
  readonly hooks: Map<string, Map<string, {
1190
1207
  readonly hookName: string;
1191
1208
  }>>;
1192
- readonly externalModuleTypes: Map<string, string>;
1209
+ readonly externalTypes: Map<string, string>;
1210
+ readonly externalPackages: string[];
1193
1211
  readonly moduleName: string;
1194
1212
  readonly modules: Map<string, {
1195
1213
  readonly name: string;
@@ -1215,7 +1233,8 @@ export declare const CoreConfigurationSchema: {
1215
1233
  readonly hooks: Map<string, Map<string, {
1216
1234
  readonly hookName: string;
1217
1235
  }>>;
1218
- readonly externalModuleTypes: Map<string, string>;
1236
+ readonly externalTypes: Map<string, string>;
1237
+ readonly externalPackages: string[];
1219
1238
  readonly moduleName: string;
1220
1239
  readonly modules: Map<string, {
1221
1240
  readonly name: string;
@@ -1241,7 +1260,8 @@ export declare const CoreConfigurationSchema: {
1241
1260
  readonly hooks: Map<string, Map<string, {
1242
1261
  readonly hookName: string;
1243
1262
  }>>;
1244
- readonly externalModuleTypes: Map<string, string>;
1263
+ readonly externalTypes: Map<string, string>;
1264
+ readonly externalPackages: string[];
1245
1265
  readonly moduleName: string;
1246
1266
  readonly modules: Map<string, {
1247
1267
  readonly name: string;
@@ -1267,7 +1287,8 @@ export declare const CoreConfigurationSchema: {
1267
1287
  readonly hooks: Map<string, Map<string, {
1268
1288
  readonly hookName: string;
1269
1289
  }>>;
1270
- readonly externalModuleTypes: Map<string, string>;
1290
+ readonly externalTypes: Map<string, string>;
1291
+ readonly externalPackages: string[];
1271
1292
  readonly moduleName: string;
1272
1293
  readonly modules: Map<string, {
1273
1294
  readonly name: string;
@@ -1293,7 +1314,8 @@ export declare const CoreConfigurationSchema: {
1293
1314
  readonly hooks: Map<string, Map<string, {
1294
1315
  readonly hookName: string;
1295
1316
  }>>;
1296
- readonly externalModuleTypes: Map<string, string>;
1317
+ readonly externalTypes: Map<string, string>;
1318
+ readonly externalPackages: string[];
1297
1319
  readonly moduleName: string;
1298
1320
  readonly modules: Map<string, {
1299
1321
  readonly name: string;
@@ -1319,7 +1341,8 @@ export declare const CoreConfigurationSchema: {
1319
1341
  readonly hooks: Map<string, Map<string, {
1320
1342
  readonly hookName: string;
1321
1343
  }>>;
1322
- readonly externalModuleTypes: Map<string, string>;
1344
+ readonly externalTypes: Map<string, string>;
1345
+ readonly externalPackages: string[];
1323
1346
  readonly moduleName: string;
1324
1347
  readonly modules: Map<string, {
1325
1348
  readonly name: string;
@@ -1345,7 +1368,8 @@ export declare const CoreConfigurationSchema: {
1345
1368
  readonly hooks: Map<string, Map<string, {
1346
1369
  readonly hookName: string;
1347
1370
  }>>;
1348
- readonly externalModuleTypes: Map<string, string>;
1371
+ readonly externalTypes: Map<string, string>;
1372
+ readonly externalPackages: string[];
1349
1373
  readonly moduleName: string;
1350
1374
  readonly modules: Map<string, {
1351
1375
  readonly name: string;
@@ -1371,7 +1395,8 @@ export declare const CoreConfigurationSchema: {
1371
1395
  readonly hooks: Map<string, Map<string, {
1372
1396
  readonly hookName: string;
1373
1397
  }>>;
1374
- readonly externalModuleTypes: Map<string, string>;
1398
+ readonly externalTypes: Map<string, string>;
1399
+ readonly externalPackages: string[];
1375
1400
  readonly moduleName: string;
1376
1401
  readonly modules: Map<string, {
1377
1402
  readonly name: string;
@@ -1397,7 +1422,8 @@ export declare const CoreConfigurationSchema: {
1397
1422
  readonly hooks: Map<string, Map<string, {
1398
1423
  readonly hookName: string;
1399
1424
  }>>;
1400
- readonly externalModuleTypes: Map<string, string>;
1425
+ readonly externalTypes: Map<string, string>;
1426
+ readonly externalPackages: string[];
1401
1427
  readonly moduleName: string;
1402
1428
  readonly modules: Map<string, {
1403
1429
  readonly name: string;
@@ -1423,7 +1449,8 @@ export declare const CoreConfigurationSchema: {
1423
1449
  readonly hooks: Map<string, Map<string, {
1424
1450
  readonly hookName: string;
1425
1451
  }>>;
1426
- readonly externalModuleTypes: Map<string, string>;
1452
+ readonly externalTypes: Map<string, string>;
1453
+ readonly externalPackages: string[];
1427
1454
  readonly moduleName: string;
1428
1455
  readonly modules: Map<string, {
1429
1456
  readonly name: string;
@@ -1449,7 +1476,8 @@ export declare const CoreConfigurationSchema: {
1449
1476
  readonly hooks: Map<string, Map<string, {
1450
1477
  readonly hookName: string;
1451
1478
  }>>;
1452
- readonly externalModuleTypes: Map<string, string>;
1479
+ readonly externalTypes: Map<string, string>;
1480
+ readonly externalPackages: string[];
1453
1481
  readonly moduleName: string;
1454
1482
  readonly modules: Map<string, {
1455
1483
  readonly name: string;
@@ -1475,7 +1503,8 @@ export declare const CoreConfigurationSchema: {
1475
1503
  readonly hooks: Map<string, Map<string, {
1476
1504
  readonly hookName: string;
1477
1505
  }>>;
1478
- readonly externalModuleTypes: Map<string, string>;
1506
+ readonly externalTypes: Map<string, string>;
1507
+ readonly externalPackages: string[];
1479
1508
  readonly moduleName: string;
1480
1509
  readonly modules: Map<string, {
1481
1510
  readonly name: string;
@@ -1501,7 +1530,8 @@ export declare const CoreConfigurationSchema: {
1501
1530
  readonly hooks: Map<string, Map<string, {
1502
1531
  readonly hookName: string;
1503
1532
  }>>;
1504
- readonly externalModuleTypes: Map<string, string>;
1533
+ readonly externalTypes: Map<string, string>;
1534
+ readonly externalPackages: string[];
1505
1535
  readonly moduleName: string;
1506
1536
  readonly modules: Map<string, {
1507
1537
  readonly name: string;
@@ -1527,7 +1557,8 @@ export declare const CoreConfigurationSchema: {
1527
1557
  readonly hooks: Map<string, Map<string, {
1528
1558
  readonly hookName: string;
1529
1559
  }>>;
1530
- readonly externalModuleTypes: Map<string, string>;
1560
+ readonly externalTypes: Map<string, string>;
1561
+ readonly externalPackages: string[];
1531
1562
  readonly moduleName: string;
1532
1563
  readonly modules: Map<string, {
1533
1564
  readonly name: string;
@@ -1553,7 +1584,8 @@ export declare const CoreConfigurationSchema: {
1553
1584
  readonly hooks: Map<string, Map<string, {
1554
1585
  readonly hookName: string;
1555
1586
  }>>;
1556
- readonly externalModuleTypes: Map<string, string>;
1587
+ readonly externalTypes: Map<string, string>;
1588
+ readonly externalPackages: string[];
1557
1589
  readonly moduleName: string;
1558
1590
  readonly modules: Map<string, {
1559
1591
  readonly name: string;
@@ -1579,7 +1611,8 @@ export declare const CoreConfigurationSchema: {
1579
1611
  readonly hooks: Map<string, Map<string, {
1580
1612
  readonly hookName: string;
1581
1613
  }>>;
1582
- readonly externalModuleTypes: Map<string, string>;
1614
+ readonly externalTypes: Map<string, string>;
1615
+ readonly externalPackages: string[];
1583
1616
  readonly moduleName: string;
1584
1617
  readonly modules: Map<string, {
1585
1618
  readonly name: string;
@@ -1621,7 +1654,8 @@ export declare const CoreConfigurationSchema: {
1621
1654
  readonly hooks: Map<string, Map<string, {
1622
1655
  readonly hookName: string;
1623
1656
  }>>;
1624
- readonly externalModuleTypes: Map<string, string>;
1657
+ readonly externalTypes: Map<string, string>;
1658
+ readonly externalPackages: string[];
1625
1659
  readonly moduleName: string;
1626
1660
  readonly modules: Map<string, {
1627
1661
  readonly name: string;
@@ -1647,7 +1681,8 @@ export declare const CoreConfigurationSchema: {
1647
1681
  readonly hooks: Map<string, Map<string, {
1648
1682
  readonly hookName: string;
1649
1683
  }>>;
1650
- readonly externalModuleTypes: Map<string, string>;
1684
+ readonly externalTypes: Map<string, string>;
1685
+ readonly externalPackages: string[];
1651
1686
  readonly moduleName: string;
1652
1687
  readonly modules: Map<string, {
1653
1688
  readonly name: string;
@@ -1673,7 +1708,8 @@ export declare const CoreConfigurationSchema: {
1673
1708
  readonly hooks: Map<string, Map<string, {
1674
1709
  readonly hookName: string;
1675
1710
  }>>;
1676
- readonly externalModuleTypes: Map<string, string>;
1711
+ readonly externalTypes: Map<string, string>;
1712
+ readonly externalPackages: string[];
1677
1713
  readonly moduleName: string;
1678
1714
  readonly modules: Map<string, {
1679
1715
  readonly name: string;
@@ -1699,7 +1735,8 @@ export declare const CoreConfigurationSchema: {
1699
1735
  readonly hooks: Map<string, Map<string, {
1700
1736
  readonly hookName: string;
1701
1737
  }>>;
1702
- readonly externalModuleTypes: Map<string, string>;
1738
+ readonly externalTypes: Map<string, string>;
1739
+ readonly externalPackages: string[];
1703
1740
  readonly moduleName: string;
1704
1741
  readonly modules: Map<string, {
1705
1742
  readonly name: string;
@@ -1725,7 +1762,8 @@ export declare const CoreConfigurationSchema: {
1725
1762
  readonly hooks: Map<string, Map<string, {
1726
1763
  readonly hookName: string;
1727
1764
  }>>;
1728
- readonly externalModuleTypes: Map<string, string>;
1765
+ readonly externalTypes: Map<string, string>;
1766
+ readonly externalPackages: string[];
1729
1767
  readonly moduleName: string;
1730
1768
  readonly modules: Map<string, {
1731
1769
  readonly name: string;
@@ -1751,7 +1789,8 @@ export declare const CoreConfigurationSchema: {
1751
1789
  readonly hooks: Map<string, Map<string, {
1752
1790
  readonly hookName: string;
1753
1791
  }>>;
1754
- readonly externalModuleTypes: Map<string, string>;
1792
+ readonly externalTypes: Map<string, string>;
1793
+ readonly externalPackages: string[];
1755
1794
  readonly moduleName: string;
1756
1795
  readonly modules: Map<string, {
1757
1796
  readonly name: string;
@@ -1777,7 +1816,8 @@ export declare const CoreConfigurationSchema: {
1777
1816
  readonly hooks: Map<string, Map<string, {
1778
1817
  readonly hookName: string;
1779
1818
  }>>;
1780
- readonly externalModuleTypes: Map<string, string>;
1819
+ readonly externalTypes: Map<string, string>;
1820
+ readonly externalPackages: string[];
1781
1821
  readonly moduleName: string;
1782
1822
  readonly modules: Map<string, {
1783
1823
  readonly name: string;
@@ -1803,7 +1843,8 @@ export declare const CoreConfigurationSchema: {
1803
1843
  readonly hooks: Map<string, Map<string, {
1804
1844
  readonly hookName: string;
1805
1845
  }>>;
1806
- readonly externalModuleTypes: Map<string, string>;
1846
+ readonly externalTypes: Map<string, string>;
1847
+ readonly externalPackages: string[];
1807
1848
  readonly moduleName: string;
1808
1849
  readonly modules: Map<string, {
1809
1850
  readonly name: string;
@@ -1829,7 +1870,8 @@ export declare const CoreConfigurationSchema: {
1829
1870
  readonly hooks: Map<string, Map<string, {
1830
1871
  readonly hookName: string;
1831
1872
  }>>;
1832
- readonly externalModuleTypes: Map<string, string>;
1873
+ readonly externalTypes: Map<string, string>;
1874
+ readonly externalPackages: string[];
1833
1875
  readonly moduleName: string;
1834
1876
  readonly modules: Map<string, {
1835
1877
  readonly name: string;
@@ -1855,7 +1897,8 @@ export declare const CoreConfigurationSchema: {
1855
1897
  readonly hooks: Map<string, Map<string, {
1856
1898
  readonly hookName: string;
1857
1899
  }>>;
1858
- readonly externalModuleTypes: Map<string, string>;
1900
+ readonly externalTypes: Map<string, string>;
1901
+ readonly externalPackages: string[];
1859
1902
  readonly moduleName: string;
1860
1903
  readonly modules: Map<string, {
1861
1904
  readonly name: string;
@@ -1881,7 +1924,8 @@ export declare const CoreConfigurationSchema: {
1881
1924
  readonly hooks: Map<string, Map<string, {
1882
1925
  readonly hookName: string;
1883
1926
  }>>;
1884
- readonly externalModuleTypes: Map<string, string>;
1927
+ readonly externalTypes: Map<string, string>;
1928
+ readonly externalPackages: string[];
1885
1929
  readonly moduleName: string;
1886
1930
  readonly modules: Map<string, {
1887
1931
  readonly name: string;
@@ -1907,7 +1951,8 @@ export declare const CoreConfigurationSchema: {
1907
1951
  readonly hooks: Map<string, Map<string, {
1908
1952
  readonly hookName: string;
1909
1953
  }>>;
1910
- readonly externalModuleTypes: Map<string, string>;
1954
+ readonly externalTypes: Map<string, string>;
1955
+ readonly externalPackages: string[];
1911
1956
  readonly moduleName: string;
1912
1957
  readonly modules: Map<string, {
1913
1958
  readonly name: string;
@@ -1933,7 +1978,8 @@ export declare const CoreConfigurationSchema: {
1933
1978
  readonly hooks: Map<string, Map<string, {
1934
1979
  readonly hookName: string;
1935
1980
  }>>;
1936
- readonly externalModuleTypes: Map<string, string>;
1981
+ readonly externalTypes: Map<string, string>;
1982
+ readonly externalPackages: string[];
1937
1983
  readonly moduleName: string;
1938
1984
  readonly modules: Map<string, {
1939
1985
  readonly name: string;
@@ -1959,7 +2005,8 @@ export declare const CoreConfigurationSchema: {
1959
2005
  readonly hooks: Map<string, Map<string, {
1960
2006
  readonly hookName: string;
1961
2007
  }>>;
1962
- readonly externalModuleTypes: Map<string, string>;
2008
+ readonly externalTypes: Map<string, string>;
2009
+ readonly externalPackages: string[];
1963
2010
  readonly moduleName: string;
1964
2011
  readonly modules: Map<string, {
1965
2012
  readonly name: string;
@@ -1985,7 +2032,8 @@ export declare const CoreConfigurationSchema: {
1985
2032
  readonly hooks: Map<string, Map<string, {
1986
2033
  readonly hookName: string;
1987
2034
  }>>;
1988
- readonly externalModuleTypes: Map<string, string>;
2035
+ readonly externalTypes: Map<string, string>;
2036
+ readonly externalPackages: string[];
1989
2037
  readonly moduleName: string;
1990
2038
  readonly modules: Map<string, {
1991
2039
  readonly name: string;
@@ -2011,7 +2059,8 @@ export declare const CoreConfigurationSchema: {
2011
2059
  readonly hooks: Map<string, Map<string, {
2012
2060
  readonly hookName: string;
2013
2061
  }>>;
2014
- readonly externalModuleTypes: Map<string, string>;
2062
+ readonly externalTypes: Map<string, string>;
2063
+ readonly externalPackages: string[];
2015
2064
  readonly moduleName: string;
2016
2065
  readonly modules: Map<string, {
2017
2066
  readonly name: string;
@@ -2037,7 +2086,8 @@ export declare const CoreConfigurationSchema: {
2037
2086
  readonly hooks: Map<string, Map<string, {
2038
2087
  readonly hookName: string;
2039
2088
  }>>;
2040
- readonly externalModuleTypes: Map<string, string>;
2089
+ readonly externalTypes: Map<string, string>;
2090
+ readonly externalPackages: string[];
2041
2091
  readonly moduleName: string;
2042
2092
  readonly modules: Map<string, {
2043
2093
  readonly name: string;
@@ -2063,7 +2113,8 @@ export declare const CoreConfigurationSchema: {
2063
2113
  readonly hooks: Map<string, Map<string, {
2064
2114
  readonly hookName: string;
2065
2115
  }>>;
2066
- readonly externalModuleTypes: Map<string, string>;
2116
+ readonly externalTypes: Map<string, string>;
2117
+ readonly externalPackages: string[];
2067
2118
  readonly moduleName: string;
2068
2119
  readonly modules: Map<string, {
2069
2120
  readonly name: string;
@@ -2089,7 +2140,8 @@ export declare const CoreConfigurationSchema: {
2089
2140
  readonly hooks: Map<string, Map<string, {
2090
2141
  readonly hookName: string;
2091
2142
  }>>;
2092
- readonly externalModuleTypes: Map<string, string>;
2143
+ readonly externalTypes: Map<string, string>;
2144
+ readonly externalPackages: string[];
2093
2145
  readonly moduleName: string;
2094
2146
  readonly modules: Map<string, {
2095
2147
  readonly name: string;
@@ -2115,7 +2167,8 @@ export declare const CoreConfigurationSchema: {
2115
2167
  readonly hooks: Map<string, Map<string, {
2116
2168
  readonly hookName: string;
2117
2169
  }>>;
2118
- readonly externalModuleTypes: Map<string, string>;
2170
+ readonly externalTypes: Map<string, string>;
2171
+ readonly externalPackages: string[];
2119
2172
  readonly moduleName: string;
2120
2173
  readonly modules: Map<string, {
2121
2174
  readonly name: string;
@@ -2141,7 +2194,8 @@ export declare const CoreConfigurationSchema: {
2141
2194
  readonly hooks: Map<string, Map<string, {
2142
2195
  readonly hookName: string;
2143
2196
  }>>;
2144
- readonly externalModuleTypes: Map<string, string>;
2197
+ readonly externalTypes: Map<string, string>;
2198
+ readonly externalPackages: string[];
2145
2199
  readonly moduleName: string;
2146
2200
  readonly modules: Map<string, {
2147
2201
  readonly name: string;
@@ -2167,7 +2221,8 @@ export declare const CoreConfigurationSchema: {
2167
2221
  readonly hooks: Map<string, Map<string, {
2168
2222
  readonly hookName: string;
2169
2223
  }>>;
2170
- readonly externalModuleTypes: Map<string, string>;
2224
+ readonly externalTypes: Map<string, string>;
2225
+ readonly externalPackages: string[];
2171
2226
  readonly moduleName: string;
2172
2227
  readonly modules: Map<string, {
2173
2228
  readonly name: string;
@@ -2193,7 +2248,8 @@ export declare const CoreConfigurationSchema: {
2193
2248
  readonly hooks: Map<string, Map<string, {
2194
2249
  readonly hookName: string;
2195
2250
  }>>;
2196
- readonly externalModuleTypes: Map<string, string>;
2251
+ readonly externalTypes: Map<string, string>;
2252
+ readonly externalPackages: string[];
2197
2253
  readonly moduleName: string;
2198
2254
  readonly modules: Map<string, {
2199
2255
  readonly name: string;
@@ -2219,7 +2275,8 @@ export declare const CoreConfigurationSchema: {
2219
2275
  readonly hooks: Map<string, Map<string, {
2220
2276
  readonly hookName: string;
2221
2277
  }>>;
2222
- readonly externalModuleTypes: Map<string, string>;
2278
+ readonly externalTypes: Map<string, string>;
2279
+ readonly externalPackages: string[];
2223
2280
  readonly moduleName: string;
2224
2281
  readonly modules: Map<string, {
2225
2282
  readonly name: string;
@@ -2245,7 +2302,8 @@ export declare const CoreConfigurationSchema: {
2245
2302
  readonly hooks: Map<string, Map<string, {
2246
2303
  readonly hookName: string;
2247
2304
  }>>;
2248
- readonly externalModuleTypes: Map<string, string>;
2305
+ readonly externalTypes: Map<string, string>;
2306
+ readonly externalPackages: string[];
2249
2307
  readonly moduleName: string;
2250
2308
  readonly modules: Map<string, {
2251
2309
  readonly name: string;
@@ -2271,7 +2329,8 @@ export declare const CoreConfigurationSchema: {
2271
2329
  readonly hooks: Map<string, Map<string, {
2272
2330
  readonly hookName: string;
2273
2331
  }>>;
2274
- readonly externalModuleTypes: Map<string, string>;
2332
+ readonly externalTypes: Map<string, string>;
2333
+ readonly externalPackages: string[];
2275
2334
  readonly moduleName: string;
2276
2335
  readonly modules: Map<string, {
2277
2336
  readonly name: string;
@@ -2297,7 +2356,8 @@ export declare const CoreConfigurationSchema: {
2297
2356
  readonly hooks: Map<string, Map<string, {
2298
2357
  readonly hookName: string;
2299
2358
  }>>;
2300
- readonly externalModuleTypes: Map<string, string>;
2359
+ readonly externalTypes: Map<string, string>;
2360
+ readonly externalPackages: string[];
2301
2361
  readonly moduleName: string;
2302
2362
  readonly modules: Map<string, {
2303
2363
  readonly name: string;
@@ -2323,7 +2383,8 @@ export declare const CoreConfigurationSchema: {
2323
2383
  readonly hooks: Map<string, Map<string, {
2324
2384
  readonly hookName: string;
2325
2385
  }>>;
2326
- readonly externalModuleTypes: Map<string, string>;
2386
+ readonly externalTypes: Map<string, string>;
2387
+ readonly externalPackages: string[];
2327
2388
  readonly moduleName: string;
2328
2389
  readonly modules: Map<string, {
2329
2390
  readonly name: string;
@@ -2349,7 +2410,8 @@ export declare const CoreConfigurationSchema: {
2349
2410
  readonly hooks: Map<string, Map<string, {
2350
2411
  readonly hookName: string;
2351
2412
  }>>;
2352
- readonly externalModuleTypes: Map<string, string>;
2413
+ readonly externalTypes: Map<string, string>;
2414
+ readonly externalPackages: string[];
2353
2415
  readonly moduleName: string;
2354
2416
  readonly modules: Map<string, {
2355
2417
  readonly name: string;
@@ -2375,7 +2437,8 @@ export declare const CoreConfigurationSchema: {
2375
2437
  readonly hooks: Map<string, Map<string, {
2376
2438
  readonly hookName: string;
2377
2439
  }>>;
2378
- readonly externalModuleTypes: Map<string, string>;
2440
+ readonly externalTypes: Map<string, string>;
2441
+ readonly externalPackages: string[];
2379
2442
  readonly moduleName: string;
2380
2443
  readonly modules: Map<string, {
2381
2444
  readonly name: string;
@@ -2401,7 +2464,8 @@ export declare const CoreConfigurationSchema: {
2401
2464
  readonly hooks: Map<string, Map<string, {
2402
2465
  readonly hookName: string;
2403
2466
  }>>;
2404
- readonly externalModuleTypes: Map<string, string>;
2467
+ readonly externalTypes: Map<string, string>;
2468
+ readonly externalPackages: string[];
2405
2469
  readonly moduleName: string;
2406
2470
  readonly modules: Map<string, {
2407
2471
  readonly name: string;
@@ -2427,7 +2491,8 @@ export declare const CoreConfigurationSchema: {
2427
2491
  readonly hooks: Map<string, Map<string, {
2428
2492
  readonly hookName: string;
2429
2493
  }>>;
2430
- readonly externalModuleTypes: Map<string, string>;
2494
+ readonly externalTypes: Map<string, string>;
2495
+ readonly externalPackages: string[];
2431
2496
  readonly moduleName: string;
2432
2497
  readonly modules: Map<string, {
2433
2498
  readonly name: string;
@@ -2453,7 +2518,8 @@ export declare const CoreConfigurationSchema: {
2453
2518
  readonly hooks: Map<string, Map<string, {
2454
2519
  readonly hookName: string;
2455
2520
  }>>;
2456
- readonly externalModuleTypes: Map<string, string>;
2521
+ readonly externalTypes: Map<string, string>;
2522
+ readonly externalPackages: string[];
2457
2523
  readonly moduleName: string;
2458
2524
  readonly modules: Map<string, {
2459
2525
  readonly name: string;