dev-dict 0.6.4 → 0.7.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/dev-dict.min.js +1 -1
- package/dist/dev-dict.min.js.map +1 -1
- package/dist/index.d.ts +583 -13
- package/dist/index.js +755 -423
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -128,6 +128,14 @@ declare const TAG: {
|
|
|
128
128
|
readonly "de-DE": "Backend";
|
|
129
129
|
};
|
|
130
130
|
};
|
|
131
|
+
readonly cryptography: {
|
|
132
|
+
readonly id: "cryptography";
|
|
133
|
+
readonly name: {
|
|
134
|
+
readonly "en-US": "Cryptography";
|
|
135
|
+
readonly "en-GB": "en-US";
|
|
136
|
+
readonly "de-DE": "Kryptografie";
|
|
137
|
+
};
|
|
138
|
+
};
|
|
131
139
|
readonly frontend: {
|
|
132
140
|
readonly id: "frontend";
|
|
133
141
|
readonly name: {
|
|
@@ -160,6 +168,14 @@ declare const TAG: {
|
|
|
160
168
|
readonly "de-DE": "QA";
|
|
161
169
|
};
|
|
162
170
|
};
|
|
171
|
+
readonly security: {
|
|
172
|
+
readonly id: "security";
|
|
173
|
+
readonly name: {
|
|
174
|
+
readonly "en-US": "Security";
|
|
175
|
+
readonly "en-GB": "en-US";
|
|
176
|
+
readonly "de-DE": "Sicherheit";
|
|
177
|
+
};
|
|
178
|
+
};
|
|
163
179
|
readonly testing: {
|
|
164
180
|
readonly id: "testing";
|
|
165
181
|
readonly name: {
|
|
@@ -189,13 +205,34 @@ declare const TERM: {
|
|
|
189
205
|
readonly "en-US": "AES";
|
|
190
206
|
};
|
|
191
207
|
readonly label: {
|
|
192
|
-
readonly "en-US": "";
|
|
208
|
+
readonly "en-US": "Encryption Standard";
|
|
193
209
|
};
|
|
194
210
|
readonly definition: {
|
|
195
|
-
readonly "en-US": "";
|
|
211
|
+
readonly "en-US": "Advanced Encryption Standard (AES) is a symmetric encryption algorithm established as a standard by the US National Institute of Standards and Technology (NIST) in 2001. It uses block cipher with key sizes of 128, 192, or 256 bits and is widely adopted for securing sensitive data in software applications, communications, and storage systems.";
|
|
196
212
|
};
|
|
197
|
-
readonly type: [
|
|
198
|
-
|
|
213
|
+
readonly type: [{
|
|
214
|
+
readonly id: "standard";
|
|
215
|
+
readonly name: {
|
|
216
|
+
readonly "en-US": "Standard";
|
|
217
|
+
readonly "en-GB": "en-US";
|
|
218
|
+
readonly "de-DE": "Standard";
|
|
219
|
+
};
|
|
220
|
+
}];
|
|
221
|
+
readonly tags: [{
|
|
222
|
+
readonly id: "security";
|
|
223
|
+
readonly name: {
|
|
224
|
+
readonly "en-US": "Security";
|
|
225
|
+
readonly "en-GB": "en-US";
|
|
226
|
+
readonly "de-DE": "Sicherheit";
|
|
227
|
+
};
|
|
228
|
+
}, {
|
|
229
|
+
readonly id: "cryptography";
|
|
230
|
+
readonly name: {
|
|
231
|
+
readonly "en-US": "Cryptography";
|
|
232
|
+
readonly "en-GB": "en-US";
|
|
233
|
+
readonly "de-DE": "Kryptografie";
|
|
234
|
+
};
|
|
235
|
+
}];
|
|
199
236
|
};
|
|
200
237
|
readonly agile: {
|
|
201
238
|
readonly id: "agile";
|
|
@@ -267,6 +304,27 @@ declare const TERM: {
|
|
|
267
304
|
readonly type: [];
|
|
268
305
|
readonly tags: [];
|
|
269
306
|
};
|
|
307
|
+
readonly assembly: {
|
|
308
|
+
readonly id: "assembly";
|
|
309
|
+
readonly name: {
|
|
310
|
+
readonly "en-US": "Assembly";
|
|
311
|
+
};
|
|
312
|
+
readonly label: {
|
|
313
|
+
readonly "en-US": "";
|
|
314
|
+
};
|
|
315
|
+
readonly definition: {
|
|
316
|
+
readonly "en-US": "";
|
|
317
|
+
};
|
|
318
|
+
readonly type: [{
|
|
319
|
+
readonly id: "language";
|
|
320
|
+
readonly name: {
|
|
321
|
+
readonly "en-US": "Language";
|
|
322
|
+
readonly "en-GB": "en-US";
|
|
323
|
+
readonly "de-DE": "Sprache";
|
|
324
|
+
};
|
|
325
|
+
}];
|
|
326
|
+
readonly tags: [];
|
|
327
|
+
};
|
|
270
328
|
readonly angularjs: {
|
|
271
329
|
readonly id: "angularjs";
|
|
272
330
|
readonly name: {
|
|
@@ -384,7 +442,14 @@ declare const TERM: {
|
|
|
384
442
|
readonly definition: {
|
|
385
443
|
readonly "en-US": "";
|
|
386
444
|
};
|
|
387
|
-
readonly type: [
|
|
445
|
+
readonly type: [{
|
|
446
|
+
readonly id: "language";
|
|
447
|
+
readonly name: {
|
|
448
|
+
readonly "en-US": "Language";
|
|
449
|
+
readonly "en-GB": "en-US";
|
|
450
|
+
readonly "de-DE": "Sprache";
|
|
451
|
+
};
|
|
452
|
+
}];
|
|
388
453
|
readonly tags: [];
|
|
389
454
|
};
|
|
390
455
|
readonly bdd: {
|
|
@@ -552,7 +617,14 @@ declare const TERM: {
|
|
|
552
617
|
readonly definition: {
|
|
553
618
|
readonly "en-US": "";
|
|
554
619
|
};
|
|
555
|
-
readonly type: [
|
|
620
|
+
readonly type: [{
|
|
621
|
+
readonly id: "language";
|
|
622
|
+
readonly name: {
|
|
623
|
+
readonly "en-US": "Language";
|
|
624
|
+
readonly "en-GB": "en-US";
|
|
625
|
+
readonly "de-DE": "Sprache";
|
|
626
|
+
};
|
|
627
|
+
}];
|
|
556
628
|
readonly tags: [];
|
|
557
629
|
};
|
|
558
630
|
readonly cakephp: {
|
|
@@ -639,6 +711,27 @@ declare const TERM: {
|
|
|
639
711
|
readonly type: [];
|
|
640
712
|
readonly tags: [];
|
|
641
713
|
};
|
|
714
|
+
readonly clojure: {
|
|
715
|
+
readonly id: "clojure";
|
|
716
|
+
readonly name: {
|
|
717
|
+
readonly "en-US": "Clojure";
|
|
718
|
+
};
|
|
719
|
+
readonly label: {
|
|
720
|
+
readonly "en-US": "";
|
|
721
|
+
};
|
|
722
|
+
readonly definition: {
|
|
723
|
+
readonly "en-US": "";
|
|
724
|
+
};
|
|
725
|
+
readonly type: [{
|
|
726
|
+
readonly id: "language";
|
|
727
|
+
readonly name: {
|
|
728
|
+
readonly "en-US": "Language";
|
|
729
|
+
readonly "en-GB": "en-US";
|
|
730
|
+
readonly "de-DE": "Sprache";
|
|
731
|
+
};
|
|
732
|
+
}];
|
|
733
|
+
readonly tags: [];
|
|
734
|
+
};
|
|
642
735
|
readonly cloudflare: {
|
|
643
736
|
readonly id: "cloudflare";
|
|
644
737
|
readonly name: {
|
|
@@ -720,7 +813,14 @@ declare const TERM: {
|
|
|
720
813
|
readonly definition: {
|
|
721
814
|
readonly "en-US": "";
|
|
722
815
|
};
|
|
723
|
-
readonly type: [
|
|
816
|
+
readonly type: [{
|
|
817
|
+
readonly id: "language";
|
|
818
|
+
readonly name: {
|
|
819
|
+
readonly "en-US": "Language";
|
|
820
|
+
readonly "en-GB": "en-US";
|
|
821
|
+
readonly "de-DE": "Sprache";
|
|
822
|
+
};
|
|
823
|
+
}];
|
|
724
824
|
readonly tags: [];
|
|
725
825
|
};
|
|
726
826
|
readonly craft_cms: {
|
|
@@ -762,7 +862,14 @@ declare const TERM: {
|
|
|
762
862
|
readonly definition: {
|
|
763
863
|
readonly "en-US": "";
|
|
764
864
|
};
|
|
765
|
-
readonly type: [
|
|
865
|
+
readonly type: [{
|
|
866
|
+
readonly id: "language";
|
|
867
|
+
readonly name: {
|
|
868
|
+
readonly "en-US": "Language";
|
|
869
|
+
readonly "en-GB": "en-US";
|
|
870
|
+
readonly "de-DE": "Sprache";
|
|
871
|
+
};
|
|
872
|
+
}];
|
|
766
873
|
readonly tags: [];
|
|
767
874
|
};
|
|
768
875
|
readonly css_in_js: {
|
|
@@ -835,6 +942,27 @@ declare const TERM: {
|
|
|
835
942
|
readonly type: [];
|
|
836
943
|
readonly tags: [];
|
|
837
944
|
};
|
|
945
|
+
readonly dart: {
|
|
946
|
+
readonly id: "dart";
|
|
947
|
+
readonly name: {
|
|
948
|
+
readonly "en-US": "Dart";
|
|
949
|
+
};
|
|
950
|
+
readonly label: {
|
|
951
|
+
readonly "en-US": "";
|
|
952
|
+
};
|
|
953
|
+
readonly definition: {
|
|
954
|
+
readonly "en-US": "";
|
|
955
|
+
};
|
|
956
|
+
readonly type: [{
|
|
957
|
+
readonly id: "language";
|
|
958
|
+
readonly name: {
|
|
959
|
+
readonly "en-US": "Language";
|
|
960
|
+
readonly "en-GB": "en-US";
|
|
961
|
+
readonly "de-DE": "Sprache";
|
|
962
|
+
};
|
|
963
|
+
}];
|
|
964
|
+
readonly tags: [];
|
|
965
|
+
};
|
|
838
966
|
readonly ddd: {
|
|
839
967
|
readonly id: "ddd";
|
|
840
968
|
readonly name: {
|
|
@@ -996,6 +1124,27 @@ declare const TERM: {
|
|
|
996
1124
|
readonly type: [];
|
|
997
1125
|
readonly tags: [];
|
|
998
1126
|
};
|
|
1127
|
+
readonly erlang: {
|
|
1128
|
+
readonly id: "erlang";
|
|
1129
|
+
readonly name: {
|
|
1130
|
+
readonly "en-US": "Erlang";
|
|
1131
|
+
};
|
|
1132
|
+
readonly label: {
|
|
1133
|
+
readonly "en-US": "";
|
|
1134
|
+
};
|
|
1135
|
+
readonly definition: {
|
|
1136
|
+
readonly "en-US": "";
|
|
1137
|
+
};
|
|
1138
|
+
readonly type: [{
|
|
1139
|
+
readonly id: "language";
|
|
1140
|
+
readonly name: {
|
|
1141
|
+
readonly "en-US": "Language";
|
|
1142
|
+
readonly "en-GB": "en-US";
|
|
1143
|
+
readonly "de-DE": "Sprache";
|
|
1144
|
+
};
|
|
1145
|
+
}];
|
|
1146
|
+
readonly tags: [];
|
|
1147
|
+
};
|
|
999
1148
|
readonly es_build: {
|
|
1000
1149
|
readonly id: "es_build";
|
|
1001
1150
|
readonly name: {
|
|
@@ -1150,6 +1299,27 @@ declare const TERM: {
|
|
|
1150
1299
|
readonly type: [];
|
|
1151
1300
|
readonly tags: [];
|
|
1152
1301
|
};
|
|
1302
|
+
readonly fortran: {
|
|
1303
|
+
readonly id: "fortran";
|
|
1304
|
+
readonly name: {
|
|
1305
|
+
readonly "en-US": "Fortran";
|
|
1306
|
+
};
|
|
1307
|
+
readonly label: {
|
|
1308
|
+
readonly "en-US": "";
|
|
1309
|
+
};
|
|
1310
|
+
readonly definition: {
|
|
1311
|
+
readonly "en-US": "";
|
|
1312
|
+
};
|
|
1313
|
+
readonly type: [{
|
|
1314
|
+
readonly id: "language";
|
|
1315
|
+
readonly name: {
|
|
1316
|
+
readonly "en-US": "Language";
|
|
1317
|
+
readonly "en-GB": "en-US";
|
|
1318
|
+
readonly "de-DE": "Sprache";
|
|
1319
|
+
};
|
|
1320
|
+
}];
|
|
1321
|
+
readonly tags: [];
|
|
1322
|
+
};
|
|
1153
1323
|
readonly foundation: {
|
|
1154
1324
|
readonly id: "foundation";
|
|
1155
1325
|
readonly name: {
|
|
@@ -1164,6 +1334,27 @@ declare const TERM: {
|
|
|
1164
1334
|
readonly type: [];
|
|
1165
1335
|
readonly tags: [];
|
|
1166
1336
|
};
|
|
1337
|
+
readonly f_sharp: {
|
|
1338
|
+
readonly id: "f_sharp";
|
|
1339
|
+
readonly name: {
|
|
1340
|
+
readonly "en-US": "F#";
|
|
1341
|
+
};
|
|
1342
|
+
readonly label: {
|
|
1343
|
+
readonly "en-US": "";
|
|
1344
|
+
};
|
|
1345
|
+
readonly definition: {
|
|
1346
|
+
readonly "en-US": "";
|
|
1347
|
+
};
|
|
1348
|
+
readonly type: [{
|
|
1349
|
+
readonly id: "language";
|
|
1350
|
+
readonly name: {
|
|
1351
|
+
readonly "en-US": "Language";
|
|
1352
|
+
readonly "en-GB": "en-US";
|
|
1353
|
+
readonly "de-DE": "Sprache";
|
|
1354
|
+
};
|
|
1355
|
+
}];
|
|
1356
|
+
readonly tags: [];
|
|
1357
|
+
};
|
|
1167
1358
|
readonly ftp: {
|
|
1168
1359
|
readonly id: "ftp";
|
|
1169
1360
|
readonly name: {
|
|
@@ -1287,7 +1478,14 @@ declare const TERM: {
|
|
|
1287
1478
|
readonly definition: {
|
|
1288
1479
|
readonly "en-US": "";
|
|
1289
1480
|
};
|
|
1290
|
-
readonly type: [
|
|
1481
|
+
readonly type: [{
|
|
1482
|
+
readonly id: "language";
|
|
1483
|
+
readonly name: {
|
|
1484
|
+
readonly "en-US": "Language";
|
|
1485
|
+
readonly "en-GB": "en-US";
|
|
1486
|
+
readonly "de-DE": "Sprache";
|
|
1487
|
+
};
|
|
1488
|
+
}];
|
|
1291
1489
|
readonly tags: [];
|
|
1292
1490
|
};
|
|
1293
1491
|
readonly google_analytics: {
|
|
@@ -1360,6 +1558,27 @@ declare const TERM: {
|
|
|
1360
1558
|
readonly type: [];
|
|
1361
1559
|
readonly tags: [];
|
|
1362
1560
|
};
|
|
1561
|
+
readonly groovy: {
|
|
1562
|
+
readonly id: "groovy";
|
|
1563
|
+
readonly name: {
|
|
1564
|
+
readonly "en-US": "Groovy";
|
|
1565
|
+
};
|
|
1566
|
+
readonly label: {
|
|
1567
|
+
readonly "en-US": "";
|
|
1568
|
+
};
|
|
1569
|
+
readonly definition: {
|
|
1570
|
+
readonly "en-US": "";
|
|
1571
|
+
};
|
|
1572
|
+
readonly type: [{
|
|
1573
|
+
readonly id: "language";
|
|
1574
|
+
readonly name: {
|
|
1575
|
+
readonly "en-US": "Language";
|
|
1576
|
+
readonly "en-GB": "en-US";
|
|
1577
|
+
readonly "de-DE": "Sprache";
|
|
1578
|
+
};
|
|
1579
|
+
}];
|
|
1580
|
+
readonly tags: [];
|
|
1581
|
+
};
|
|
1363
1582
|
readonly grunt: {
|
|
1364
1583
|
readonly id: "grunt";
|
|
1365
1584
|
readonly name: {
|
|
@@ -1416,6 +1635,27 @@ declare const TERM: {
|
|
|
1416
1635
|
readonly type: [];
|
|
1417
1636
|
readonly tags: [];
|
|
1418
1637
|
};
|
|
1638
|
+
readonly haskell: {
|
|
1639
|
+
readonly id: "haskell";
|
|
1640
|
+
readonly name: {
|
|
1641
|
+
readonly "en-US": "Haskell";
|
|
1642
|
+
};
|
|
1643
|
+
readonly label: {
|
|
1644
|
+
readonly "en-US": "";
|
|
1645
|
+
};
|
|
1646
|
+
readonly definition: {
|
|
1647
|
+
readonly "en-US": "";
|
|
1648
|
+
};
|
|
1649
|
+
readonly type: [{
|
|
1650
|
+
readonly id: "language";
|
|
1651
|
+
readonly name: {
|
|
1652
|
+
readonly "en-US": "Language";
|
|
1653
|
+
readonly "en-GB": "en-US";
|
|
1654
|
+
readonly "de-DE": "Sprache";
|
|
1655
|
+
};
|
|
1656
|
+
}];
|
|
1657
|
+
readonly tags: [];
|
|
1658
|
+
};
|
|
1419
1659
|
readonly hetzner: {
|
|
1420
1660
|
readonly id: "hetzner";
|
|
1421
1661
|
readonly name: {
|
|
@@ -1455,7 +1695,14 @@ declare const TERM: {
|
|
|
1455
1695
|
readonly definition: {
|
|
1456
1696
|
readonly "en-US": "";
|
|
1457
1697
|
};
|
|
1458
|
-
readonly type: [
|
|
1698
|
+
readonly type: [{
|
|
1699
|
+
readonly id: "language";
|
|
1700
|
+
readonly name: {
|
|
1701
|
+
readonly "en-US": "Language";
|
|
1702
|
+
readonly "en-GB": "en-US";
|
|
1703
|
+
readonly "de-DE": "Sprache";
|
|
1704
|
+
};
|
|
1705
|
+
}];
|
|
1459
1706
|
readonly tags: [];
|
|
1460
1707
|
};
|
|
1461
1708
|
readonly htmx: {
|
|
@@ -1514,6 +1761,27 @@ declare const TERM: {
|
|
|
1514
1761
|
readonly type: [];
|
|
1515
1762
|
readonly tags: [];
|
|
1516
1763
|
};
|
|
1764
|
+
readonly java: {
|
|
1765
|
+
readonly id: "java";
|
|
1766
|
+
readonly name: {
|
|
1767
|
+
readonly "en-US": "Java";
|
|
1768
|
+
};
|
|
1769
|
+
readonly label: {
|
|
1770
|
+
readonly "en-US": "";
|
|
1771
|
+
};
|
|
1772
|
+
readonly definition: {
|
|
1773
|
+
readonly "en-US": "";
|
|
1774
|
+
};
|
|
1775
|
+
readonly type: [{
|
|
1776
|
+
readonly id: "language";
|
|
1777
|
+
readonly name: {
|
|
1778
|
+
readonly "en-US": "Language";
|
|
1779
|
+
readonly "en-GB": "en-US";
|
|
1780
|
+
readonly "de-DE": "Sprache";
|
|
1781
|
+
};
|
|
1782
|
+
}];
|
|
1783
|
+
readonly tags: [];
|
|
1784
|
+
};
|
|
1517
1785
|
readonly javascript: {
|
|
1518
1786
|
readonly id: "javascript";
|
|
1519
1787
|
readonly name: {
|
|
@@ -1659,6 +1927,27 @@ declare const TERM: {
|
|
|
1659
1927
|
readonly type: [];
|
|
1660
1928
|
readonly tags: [];
|
|
1661
1929
|
};
|
|
1930
|
+
readonly kotlin: {
|
|
1931
|
+
readonly id: "kotlin";
|
|
1932
|
+
readonly name: {
|
|
1933
|
+
readonly "en-US": "Kotlin";
|
|
1934
|
+
};
|
|
1935
|
+
readonly label: {
|
|
1936
|
+
readonly "en-US": "";
|
|
1937
|
+
};
|
|
1938
|
+
readonly definition: {
|
|
1939
|
+
readonly "en-US": "";
|
|
1940
|
+
};
|
|
1941
|
+
readonly type: [{
|
|
1942
|
+
readonly id: "language";
|
|
1943
|
+
readonly name: {
|
|
1944
|
+
readonly "en-US": "Language";
|
|
1945
|
+
readonly "en-GB": "en-US";
|
|
1946
|
+
readonly "de-DE": "Sprache";
|
|
1947
|
+
};
|
|
1948
|
+
}];
|
|
1949
|
+
readonly tags: [];
|
|
1950
|
+
};
|
|
1662
1951
|
readonly kubernetes: {
|
|
1663
1952
|
readonly id: "kubernetes";
|
|
1664
1953
|
readonly name: {
|
|
@@ -1729,6 +2018,27 @@ declare const TERM: {
|
|
|
1729
2018
|
readonly type: [];
|
|
1730
2019
|
readonly tags: [];
|
|
1731
2020
|
};
|
|
2021
|
+
readonly lua: {
|
|
2022
|
+
readonly id: "lua";
|
|
2023
|
+
readonly name: {
|
|
2024
|
+
readonly "en-US": "Lua";
|
|
2025
|
+
};
|
|
2026
|
+
readonly label: {
|
|
2027
|
+
readonly "en-US": "";
|
|
2028
|
+
};
|
|
2029
|
+
readonly definition: {
|
|
2030
|
+
readonly "en-US": "";
|
|
2031
|
+
};
|
|
2032
|
+
readonly type: [{
|
|
2033
|
+
readonly id: "language";
|
|
2034
|
+
readonly name: {
|
|
2035
|
+
readonly "en-US": "Language";
|
|
2036
|
+
readonly "en-GB": "en-US";
|
|
2037
|
+
readonly "de-DE": "Sprache";
|
|
2038
|
+
};
|
|
2039
|
+
}];
|
|
2040
|
+
readonly tags: [];
|
|
2041
|
+
};
|
|
1732
2042
|
readonly mac_os: {
|
|
1733
2043
|
readonly id: "mac_os";
|
|
1734
2044
|
readonly name: {
|
|
@@ -1799,6 +2109,27 @@ declare const TERM: {
|
|
|
1799
2109
|
readonly type: [];
|
|
1800
2110
|
readonly tags: [];
|
|
1801
2111
|
};
|
|
2112
|
+
readonly matlab: {
|
|
2113
|
+
readonly id: "matlab";
|
|
2114
|
+
readonly name: {
|
|
2115
|
+
readonly "en-US": "MATLAB";
|
|
2116
|
+
};
|
|
2117
|
+
readonly label: {
|
|
2118
|
+
readonly "en-US": "";
|
|
2119
|
+
};
|
|
2120
|
+
readonly definition: {
|
|
2121
|
+
readonly "en-US": "";
|
|
2122
|
+
};
|
|
2123
|
+
readonly type: [{
|
|
2124
|
+
readonly id: "language";
|
|
2125
|
+
readonly name: {
|
|
2126
|
+
readonly "en-US": "Language";
|
|
2127
|
+
readonly "en-GB": "en-US";
|
|
2128
|
+
readonly "de-DE": "Sprache";
|
|
2129
|
+
};
|
|
2130
|
+
}];
|
|
2131
|
+
readonly tags: [];
|
|
2132
|
+
};
|
|
1802
2133
|
readonly maven: {
|
|
1803
2134
|
readonly id: "maven";
|
|
1804
2135
|
readonly name: {
|
|
@@ -2112,6 +2443,48 @@ declare const TERM: {
|
|
|
2112
2443
|
readonly type: [];
|
|
2113
2444
|
readonly tags: [];
|
|
2114
2445
|
};
|
|
2446
|
+
readonly objective_c: {
|
|
2447
|
+
readonly id: "objective_c";
|
|
2448
|
+
readonly name: {
|
|
2449
|
+
readonly "en-US": "Objective-C";
|
|
2450
|
+
};
|
|
2451
|
+
readonly label: {
|
|
2452
|
+
readonly "en-US": "";
|
|
2453
|
+
};
|
|
2454
|
+
readonly definition: {
|
|
2455
|
+
readonly "en-US": "";
|
|
2456
|
+
};
|
|
2457
|
+
readonly type: [{
|
|
2458
|
+
readonly id: "language";
|
|
2459
|
+
readonly name: {
|
|
2460
|
+
readonly "en-US": "Language";
|
|
2461
|
+
readonly "en-GB": "en-US";
|
|
2462
|
+
readonly "de-DE": "Sprache";
|
|
2463
|
+
};
|
|
2464
|
+
}];
|
|
2465
|
+
readonly tags: [];
|
|
2466
|
+
};
|
|
2467
|
+
readonly ocaml: {
|
|
2468
|
+
readonly id: "ocaml";
|
|
2469
|
+
readonly name: {
|
|
2470
|
+
readonly "en-US": "OCaml";
|
|
2471
|
+
};
|
|
2472
|
+
readonly label: {
|
|
2473
|
+
readonly "en-US": "";
|
|
2474
|
+
};
|
|
2475
|
+
readonly definition: {
|
|
2476
|
+
readonly "en-US": "";
|
|
2477
|
+
};
|
|
2478
|
+
readonly type: [{
|
|
2479
|
+
readonly id: "language";
|
|
2480
|
+
readonly name: {
|
|
2481
|
+
readonly "en-US": "Language";
|
|
2482
|
+
readonly "en-GB": "en-US";
|
|
2483
|
+
readonly "de-DE": "Sprache";
|
|
2484
|
+
};
|
|
2485
|
+
}];
|
|
2486
|
+
readonly tags: [];
|
|
2487
|
+
};
|
|
2115
2488
|
readonly okta: {
|
|
2116
2489
|
readonly id: "okta";
|
|
2117
2490
|
readonly name: {
|
|
@@ -2168,6 +2541,27 @@ declare const TERM: {
|
|
|
2168
2541
|
readonly type: [];
|
|
2169
2542
|
readonly tags: [];
|
|
2170
2543
|
};
|
|
2544
|
+
readonly perl: {
|
|
2545
|
+
readonly id: "perl";
|
|
2546
|
+
readonly name: {
|
|
2547
|
+
readonly "en-US": "Perl";
|
|
2548
|
+
};
|
|
2549
|
+
readonly label: {
|
|
2550
|
+
readonly "en-US": "";
|
|
2551
|
+
};
|
|
2552
|
+
readonly definition: {
|
|
2553
|
+
readonly "en-US": "";
|
|
2554
|
+
};
|
|
2555
|
+
readonly type: [{
|
|
2556
|
+
readonly id: "language";
|
|
2557
|
+
readonly name: {
|
|
2558
|
+
readonly "en-US": "Language";
|
|
2559
|
+
readonly "en-GB": "en-US";
|
|
2560
|
+
readonly "de-DE": "Sprache";
|
|
2561
|
+
};
|
|
2562
|
+
}];
|
|
2563
|
+
readonly tags: [];
|
|
2564
|
+
};
|
|
2171
2565
|
readonly photoshop: {
|
|
2172
2566
|
readonly id: "photoshop";
|
|
2173
2567
|
readonly name: {
|
|
@@ -2193,7 +2587,14 @@ declare const TERM: {
|
|
|
2193
2587
|
readonly definition: {
|
|
2194
2588
|
readonly "en-US": "";
|
|
2195
2589
|
};
|
|
2196
|
-
readonly type: [
|
|
2590
|
+
readonly type: [{
|
|
2591
|
+
readonly id: "language";
|
|
2592
|
+
readonly name: {
|
|
2593
|
+
readonly "en-US": "Language";
|
|
2594
|
+
readonly "en-GB": "en-US";
|
|
2595
|
+
readonly "de-DE": "Sprache";
|
|
2596
|
+
};
|
|
2597
|
+
}];
|
|
2197
2598
|
readonly tags: [];
|
|
2198
2599
|
};
|
|
2199
2600
|
readonly pnpm: {
|
|
@@ -2305,7 +2706,14 @@ declare const TERM: {
|
|
|
2305
2706
|
readonly definition: {
|
|
2306
2707
|
readonly "en-US": "";
|
|
2307
2708
|
};
|
|
2308
|
-
readonly type: [
|
|
2709
|
+
readonly type: [{
|
|
2710
|
+
readonly id: "language";
|
|
2711
|
+
readonly name: {
|
|
2712
|
+
readonly "en-US": "Language";
|
|
2713
|
+
readonly "en-GB": "en-US";
|
|
2714
|
+
readonly "de-DE": "Sprache";
|
|
2715
|
+
};
|
|
2716
|
+
}];
|
|
2309
2717
|
readonly tags: [];
|
|
2310
2718
|
};
|
|
2311
2719
|
readonly quickbooks: {
|
|
@@ -2322,6 +2730,27 @@ declare const TERM: {
|
|
|
2322
2730
|
readonly type: [];
|
|
2323
2731
|
readonly tags: [];
|
|
2324
2732
|
};
|
|
2733
|
+
readonly r: {
|
|
2734
|
+
readonly id: "r";
|
|
2735
|
+
readonly name: {
|
|
2736
|
+
readonly "en-US": "R";
|
|
2737
|
+
};
|
|
2738
|
+
readonly label: {
|
|
2739
|
+
readonly "en-US": "";
|
|
2740
|
+
};
|
|
2741
|
+
readonly definition: {
|
|
2742
|
+
readonly "en-US": "";
|
|
2743
|
+
};
|
|
2744
|
+
readonly type: [{
|
|
2745
|
+
readonly id: "language";
|
|
2746
|
+
readonly name: {
|
|
2747
|
+
readonly "en-US": "Language";
|
|
2748
|
+
readonly "en-GB": "en-US";
|
|
2749
|
+
readonly "de-DE": "Sprache";
|
|
2750
|
+
};
|
|
2751
|
+
}];
|
|
2752
|
+
readonly tags: [];
|
|
2753
|
+
};
|
|
2325
2754
|
readonly react: {
|
|
2326
2755
|
readonly id: "react";
|
|
2327
2756
|
readonly name: {
|
|
@@ -2508,6 +2937,48 @@ declare const TERM: {
|
|
|
2508
2937
|
readonly type: [];
|
|
2509
2938
|
readonly tags: [];
|
|
2510
2939
|
};
|
|
2940
|
+
readonly ruby: {
|
|
2941
|
+
readonly id: "ruby";
|
|
2942
|
+
readonly name: {
|
|
2943
|
+
readonly "en-US": "Ruby";
|
|
2944
|
+
};
|
|
2945
|
+
readonly label: {
|
|
2946
|
+
readonly "en-US": "";
|
|
2947
|
+
};
|
|
2948
|
+
readonly definition: {
|
|
2949
|
+
readonly "en-US": "";
|
|
2950
|
+
};
|
|
2951
|
+
readonly type: [{
|
|
2952
|
+
readonly id: "language";
|
|
2953
|
+
readonly name: {
|
|
2954
|
+
readonly "en-US": "Language";
|
|
2955
|
+
readonly "en-GB": "en-US";
|
|
2956
|
+
readonly "de-DE": "Sprache";
|
|
2957
|
+
};
|
|
2958
|
+
}];
|
|
2959
|
+
readonly tags: [];
|
|
2960
|
+
};
|
|
2961
|
+
readonly rust: {
|
|
2962
|
+
readonly id: "rust";
|
|
2963
|
+
readonly name: {
|
|
2964
|
+
readonly "en-US": "Rust";
|
|
2965
|
+
};
|
|
2966
|
+
readonly label: {
|
|
2967
|
+
readonly "en-US": "";
|
|
2968
|
+
};
|
|
2969
|
+
readonly definition: {
|
|
2970
|
+
readonly "en-US": "";
|
|
2971
|
+
};
|
|
2972
|
+
readonly type: [{
|
|
2973
|
+
readonly id: "language";
|
|
2974
|
+
readonly name: {
|
|
2975
|
+
readonly "en-US": "Language";
|
|
2976
|
+
readonly "en-GB": "en-US";
|
|
2977
|
+
readonly "de-DE": "Sprache";
|
|
2978
|
+
};
|
|
2979
|
+
}];
|
|
2980
|
+
readonly tags: [];
|
|
2981
|
+
};
|
|
2511
2982
|
readonly sanity: {
|
|
2512
2983
|
readonly id: "sanity";
|
|
2513
2984
|
readonly name: {
|
|
@@ -2536,6 +3007,27 @@ declare const TERM: {
|
|
|
2536
3007
|
readonly type: [];
|
|
2537
3008
|
readonly tags: [];
|
|
2538
3009
|
};
|
|
3010
|
+
readonly scala: {
|
|
3011
|
+
readonly id: "scala";
|
|
3012
|
+
readonly name: {
|
|
3013
|
+
readonly "en-US": "Scala";
|
|
3014
|
+
};
|
|
3015
|
+
readonly label: {
|
|
3016
|
+
readonly "en-US": "";
|
|
3017
|
+
};
|
|
3018
|
+
readonly definition: {
|
|
3019
|
+
readonly "en-US": "";
|
|
3020
|
+
};
|
|
3021
|
+
readonly type: [{
|
|
3022
|
+
readonly id: "language";
|
|
3023
|
+
readonly name: {
|
|
3024
|
+
readonly "en-US": "Language";
|
|
3025
|
+
readonly "en-GB": "en-US";
|
|
3026
|
+
readonly "de-DE": "Sprache";
|
|
3027
|
+
};
|
|
3028
|
+
}];
|
|
3029
|
+
readonly tags: [];
|
|
3030
|
+
};
|
|
2539
3031
|
readonly scrum: {
|
|
2540
3032
|
readonly id: "scrum";
|
|
2541
3033
|
readonly name: {
|
|
@@ -2673,7 +3165,14 @@ declare const TERM: {
|
|
|
2673
3165
|
readonly definition: {
|
|
2674
3166
|
readonly "en-US": "";
|
|
2675
3167
|
};
|
|
2676
|
-
readonly type: [
|
|
3168
|
+
readonly type: [{
|
|
3169
|
+
readonly id: "language";
|
|
3170
|
+
readonly name: {
|
|
3171
|
+
readonly "en-US": "Language";
|
|
3172
|
+
readonly "en-GB": "en-US";
|
|
3173
|
+
readonly "de-DE": "Sprache";
|
|
3174
|
+
};
|
|
3175
|
+
}];
|
|
2677
3176
|
readonly tags: [];
|
|
2678
3177
|
};
|
|
2679
3178
|
readonly sql_lite: {
|
|
@@ -2788,6 +3287,27 @@ declare const TERM: {
|
|
|
2788
3287
|
readonly type: [];
|
|
2789
3288
|
readonly tags: [];
|
|
2790
3289
|
};
|
|
3290
|
+
readonly swift: {
|
|
3291
|
+
readonly id: "swift";
|
|
3292
|
+
readonly name: {
|
|
3293
|
+
readonly "en-US": "Swift";
|
|
3294
|
+
};
|
|
3295
|
+
readonly label: {
|
|
3296
|
+
readonly "en-US": "";
|
|
3297
|
+
};
|
|
3298
|
+
readonly definition: {
|
|
3299
|
+
readonly "en-US": "";
|
|
3300
|
+
};
|
|
3301
|
+
readonly type: [{
|
|
3302
|
+
readonly id: "language";
|
|
3303
|
+
readonly name: {
|
|
3304
|
+
readonly "en-US": "Language";
|
|
3305
|
+
readonly "en-GB": "en-US";
|
|
3306
|
+
readonly "de-DE": "Sprache";
|
|
3307
|
+
};
|
|
3308
|
+
}];
|
|
3309
|
+
readonly tags: [];
|
|
3310
|
+
};
|
|
2791
3311
|
readonly tailwind: {
|
|
2792
3312
|
readonly id: "tailwind";
|
|
2793
3313
|
readonly name: {
|
|
@@ -2994,6 +3514,27 @@ declare const TERM: {
|
|
|
2994
3514
|
readonly type: [];
|
|
2995
3515
|
readonly tags: [];
|
|
2996
3516
|
};
|
|
3517
|
+
readonly visual_basic: {
|
|
3518
|
+
readonly id: "visual_basic";
|
|
3519
|
+
readonly name: {
|
|
3520
|
+
readonly "en-US": "Visual Basic";
|
|
3521
|
+
};
|
|
3522
|
+
readonly label: {
|
|
3523
|
+
readonly "en-US": "";
|
|
3524
|
+
};
|
|
3525
|
+
readonly definition: {
|
|
3526
|
+
readonly "en-US": "";
|
|
3527
|
+
};
|
|
3528
|
+
readonly type: [{
|
|
3529
|
+
readonly id: "language";
|
|
3530
|
+
readonly name: {
|
|
3531
|
+
readonly "en-US": "Language";
|
|
3532
|
+
readonly "en-GB": "en-US";
|
|
3533
|
+
readonly "de-DE": "Sprache";
|
|
3534
|
+
};
|
|
3535
|
+
}];
|
|
3536
|
+
readonly tags: [];
|
|
3537
|
+
};
|
|
2997
3538
|
readonly vite: {
|
|
2998
3539
|
readonly id: "vite";
|
|
2999
3540
|
readonly name: {
|
|
@@ -3190,6 +3731,27 @@ declare const TERM: {
|
|
|
3190
3731
|
readonly type: [];
|
|
3191
3732
|
readonly tags: [];
|
|
3192
3733
|
};
|
|
3734
|
+
readonly zig: {
|
|
3735
|
+
readonly id: "zig";
|
|
3736
|
+
readonly name: {
|
|
3737
|
+
readonly "en-US": "Zig";
|
|
3738
|
+
};
|
|
3739
|
+
readonly label: {
|
|
3740
|
+
readonly "en-US": "";
|
|
3741
|
+
};
|
|
3742
|
+
readonly definition: {
|
|
3743
|
+
readonly "en-US": "";
|
|
3744
|
+
};
|
|
3745
|
+
readonly type: [{
|
|
3746
|
+
readonly id: "language";
|
|
3747
|
+
readonly name: {
|
|
3748
|
+
readonly "en-US": "Language";
|
|
3749
|
+
readonly "en-GB": "en-US";
|
|
3750
|
+
readonly "de-DE": "Sprache";
|
|
3751
|
+
};
|
|
3752
|
+
}];
|
|
3753
|
+
readonly tags: [];
|
|
3754
|
+
};
|
|
3193
3755
|
readonly zod: {
|
|
3194
3756
|
readonly id: "zod";
|
|
3195
3757
|
readonly name: {
|
|
@@ -3380,6 +3942,14 @@ declare const TYPE: {
|
|
|
3380
3942
|
readonly "en-US": "Platform";
|
|
3381
3943
|
};
|
|
3382
3944
|
};
|
|
3945
|
+
readonly standard: {
|
|
3946
|
+
readonly id: "standard";
|
|
3947
|
+
readonly name: {
|
|
3948
|
+
readonly "en-US": "Standard";
|
|
3949
|
+
readonly "en-GB": "en-US";
|
|
3950
|
+
readonly "de-DE": "Standard";
|
|
3951
|
+
};
|
|
3952
|
+
};
|
|
3383
3953
|
};
|
|
3384
3954
|
|
|
3385
3955
|
export { }
|