snow-ai 0.5.16 → 0.5.18
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/bundle/cli.mjs +625 -194
- package/bundle/package.json +1 -1
- package/package.json +1 -1
package/bundle/cli.mjs
CHANGED
|
@@ -44263,11 +44263,11 @@ var require_utimes = __commonJS({
|
|
|
44263
44263
|
"node_modules/fs-extra/lib/util/utimes.js"(exports2, module2) {
|
|
44264
44264
|
"use strict";
|
|
44265
44265
|
var fs40 = require_graceful_fs();
|
|
44266
|
-
var
|
|
44266
|
+
var os23 = __require("os");
|
|
44267
44267
|
var path48 = __require("path");
|
|
44268
44268
|
function hasMillisResSync() {
|
|
44269
44269
|
let tmpfile = path48.join("millis-test-sync" + Date.now().toString() + Math.random().toString().slice(2));
|
|
44270
|
-
tmpfile = path48.join(
|
|
44270
|
+
tmpfile = path48.join(os23.tmpdir(), tmpfile);
|
|
44271
44271
|
const d = /* @__PURE__ */ new Date(1435410243862);
|
|
44272
44272
|
fs40.writeFileSync(tmpfile, "https://github.com/jprichardson/node-fs-extra/pull/141");
|
|
44273
44273
|
const fd = fs40.openSync(tmpfile, "r+");
|
|
@@ -44277,7 +44277,7 @@ var require_utimes = __commonJS({
|
|
|
44277
44277
|
}
|
|
44278
44278
|
function hasMillisRes(callback) {
|
|
44279
44279
|
let tmpfile = path48.join("millis-test" + Date.now().toString() + Math.random().toString().slice(2));
|
|
44280
|
-
tmpfile = path48.join(
|
|
44280
|
+
tmpfile = path48.join(os23.tmpdir(), tmpfile);
|
|
44281
44281
|
const d = /* @__PURE__ */ new Date(1435410243862);
|
|
44282
44282
|
fs40.writeFile(tmpfile, "https://github.com/jprichardson/node-fs-extra/pull/141", (err) => {
|
|
44283
44283
|
if (err) return callback(err);
|
|
@@ -46526,6 +46526,12 @@ var init_codebaseConfig = __esm({
|
|
|
46526
46526
|
batch: {
|
|
46527
46527
|
maxLines: 10,
|
|
46528
46528
|
concurrency: 3
|
|
46529
|
+
},
|
|
46530
|
+
chunking: {
|
|
46531
|
+
maxLinesPerChunk: 200,
|
|
46532
|
+
minLinesPerChunk: 10,
|
|
46533
|
+
minCharsPerChunk: 20,
|
|
46534
|
+
overlapLines: 20
|
|
46529
46535
|
}
|
|
46530
46536
|
};
|
|
46531
46537
|
getConfigDir = () => {
|
|
@@ -46540,7 +46546,7 @@ var init_codebaseConfig = __esm({
|
|
|
46540
46546
|
return path7.join(getConfigDir(), "codebase.json");
|
|
46541
46547
|
};
|
|
46542
46548
|
loadCodebaseConfig = () => {
|
|
46543
|
-
var _a21, _b14, _c6, _d4, _e2, _f, _g;
|
|
46549
|
+
var _a21, _b14, _c6, _d4, _e2, _f, _g, _h, _i, _j, _k;
|
|
46544
46550
|
try {
|
|
46545
46551
|
const configPath = getConfigPath();
|
|
46546
46552
|
if (!fs7.existsSync(configPath)) {
|
|
@@ -46561,6 +46567,12 @@ var init_codebaseConfig = __esm({
|
|
|
46561
46567
|
batch: {
|
|
46562
46568
|
maxLines: ((_f = config3.batch) == null ? void 0 : _f.maxLines) ?? DEFAULT_CONFIG.batch.maxLines,
|
|
46563
46569
|
concurrency: ((_g = config3.batch) == null ? void 0 : _g.concurrency) ?? DEFAULT_CONFIG.batch.concurrency
|
|
46570
|
+
},
|
|
46571
|
+
chunking: {
|
|
46572
|
+
maxLinesPerChunk: ((_h = config3.chunking) == null ? void 0 : _h.maxLinesPerChunk) ?? DEFAULT_CONFIG.chunking.maxLinesPerChunk,
|
|
46573
|
+
minLinesPerChunk: ((_i = config3.chunking) == null ? void 0 : _i.minLinesPerChunk) ?? DEFAULT_CONFIG.chunking.minLinesPerChunk,
|
|
46574
|
+
minCharsPerChunk: ((_j = config3.chunking) == null ? void 0 : _j.minCharsPerChunk) ?? DEFAULT_CONFIG.chunking.minCharsPerChunk,
|
|
46575
|
+
overlapLines: ((_k = config3.chunking) == null ? void 0 : _k.overlapLines) ?? DEFAULT_CONFIG.chunking.overlapLines
|
|
46564
46576
|
}
|
|
46565
46577
|
};
|
|
46566
46578
|
} catch (error) {
|
|
@@ -81023,6 +81035,15 @@ var init_en = __esm({
|
|
|
81023
81035
|
validationDimensionsPositive: "Embedding dimensions must be greater than 0",
|
|
81024
81036
|
validationMaxLinesPositive: "Batch max lines must be greater than 0",
|
|
81025
81037
|
validationConcurrencyPositive: "Batch concurrency must be greater than 0",
|
|
81038
|
+
validationMaxLinesPerChunkPositive: "Max lines per chunk must be greater than 0",
|
|
81039
|
+
validationMinLinesPerChunkPositive: "Min lines per chunk must be greater than 0",
|
|
81040
|
+
validationMinCharsPerChunkPositive: "Min characters per chunk must be greater than 0",
|
|
81041
|
+
validationOverlapLinesNonNegative: "Overlap lines must be non-negative",
|
|
81042
|
+
validationOverlapLessThanMaxLines: "Overlap lines must be less than max lines per chunk",
|
|
81043
|
+
chunkingMaxLinesPerChunk: "Max Lines Per Chunk:",
|
|
81044
|
+
chunkingMinLinesPerChunk: "Min Lines Per Chunk:",
|
|
81045
|
+
chunkingMinCharsPerChunk: "Min Characters Per Chunk:",
|
|
81046
|
+
chunkingOverlapLines: "Overlap Lines:",
|
|
81026
81047
|
saveError: "Failed to save configuration"
|
|
81027
81048
|
},
|
|
81028
81049
|
systemPromptConfig: {
|
|
@@ -81719,7 +81740,9 @@ var init_en = __esm({
|
|
|
81719
81740
|
customInputLabel: "Custom input",
|
|
81720
81741
|
selectPrompt: "Select an option:",
|
|
81721
81742
|
enterResponse: "Enter your response:",
|
|
81722
|
-
keyboardHints: "Tip: Press 'Enter' to select | Press 'e' to edit selected option"
|
|
81743
|
+
keyboardHints: "Tip: Press 'Enter' to select | Press 'e' to edit selected option",
|
|
81744
|
+
multiSelectHint: "Multi-select mode",
|
|
81745
|
+
multiSelectKeyboardHints: "\u2191\u2193 Move | Space Toggle | 1-9 Quick toggle | Enter Confirm | e Edit"
|
|
81723
81746
|
},
|
|
81724
81747
|
toolConfirmation: {
|
|
81725
81748
|
header: "[Tool Confirmation]",
|
|
@@ -81918,6 +81941,15 @@ var init_zh = __esm({
|
|
|
81918
81941
|
validationDimensionsPositive: "\u5D4C\u5165\u7EF4\u5EA6\u5FC5\u987B\u5927\u4E8E 0",
|
|
81919
81942
|
validationMaxLinesPositive: "\u6279\u5904\u7406\u6700\u5927\u884C\u6570\u5FC5\u987B\u5927\u4E8E 0",
|
|
81920
81943
|
validationConcurrencyPositive: "\u6279\u5904\u7406\u5E76\u53D1\u6570\u5FC5\u987B\u5927\u4E8E 0",
|
|
81944
|
+
validationMaxLinesPerChunkPositive: "\u6BCF\u5757\u6700\u5927\u884C\u6570\u5FC5\u987B\u5927\u4E8E 0",
|
|
81945
|
+
validationMinLinesPerChunkPositive: "\u6BCF\u5757\u6700\u5C0F\u884C\u6570\u5FC5\u987B\u5927\u4E8E 0",
|
|
81946
|
+
validationMinCharsPerChunkPositive: "\u6BCF\u5757\u6700\u5C0F\u5B57\u7B26\u6570\u5FC5\u987B\u5927\u4E8E 0",
|
|
81947
|
+
validationOverlapLinesNonNegative: "\u91CD\u53E0\u884C\u6570\u5FC5\u987B\u4E3A\u975E\u8D1F\u6570",
|
|
81948
|
+
validationOverlapLessThanMaxLines: "\u91CD\u53E0\u884C\u6570\u5FC5\u987B\u5C0F\u4E8E\u6BCF\u5757\u6700\u5927\u884C\u6570",
|
|
81949
|
+
chunkingMaxLinesPerChunk: "\u6BCF\u5757\u6700\u5927\u884C\u6570:",
|
|
81950
|
+
chunkingMinLinesPerChunk: "\u6BCF\u5757\u6700\u5C0F\u884C\u6570:",
|
|
81951
|
+
chunkingMinCharsPerChunk: "\u6BCF\u5757\u6700\u5C0F\u5B57\u7B26\u6570:",
|
|
81952
|
+
chunkingOverlapLines: "\u91CD\u53E0\u884C\u6570:",
|
|
81921
81953
|
saveError: "\u4FDD\u5B58\u914D\u7F6E\u5931\u8D25"
|
|
81922
81954
|
},
|
|
81923
81955
|
systemPromptConfig: {
|
|
@@ -82614,7 +82646,9 @@ var init_zh = __esm({
|
|
|
82614
82646
|
customInputLabel: "\u81EA\u5B9A\u4E49\u8F93\u5165",
|
|
82615
82647
|
selectPrompt: "\u9009\u62E9\u4E00\u4E2A\u9009\u9879:",
|
|
82616
82648
|
enterResponse: "\u8BF7\u8F93\u5165\u60A8\u7684\u56DE\u7B54:",
|
|
82617
|
-
keyboardHints: "\u63D0\u793A: \u6309 'Enter' \u9009\u62E9 | \u6309 'e' \u7F16\u8F91\u5F53\u524D\u9009\u9879"
|
|
82649
|
+
keyboardHints: "\u63D0\u793A: \u6309 'Enter' \u9009\u62E9 | \u6309 'e' \u7F16\u8F91\u5F53\u524D\u9009\u9879",
|
|
82650
|
+
multiSelectHint: "\u591A\u9009\u6A21\u5F0F",
|
|
82651
|
+
multiSelectKeyboardHints: "\u2191\u2193 \u79FB\u52A8 | \u7A7A\u683C \u5207\u6362 | 1-9 \u5FEB\u901F\u5207\u6362 | \u56DE\u8F66 \u786E\u8BA4 | e \u7F16\u8F91"
|
|
82618
82652
|
},
|
|
82619
82653
|
toolConfirmation: {
|
|
82620
82654
|
header: "[\u5DE5\u5177\u786E\u8BA4]",
|
|
@@ -82813,6 +82847,15 @@ var init_zh_TW = __esm({
|
|
|
82813
82847
|
validationDimensionsPositive: "\u5D4C\u5165\u7DAD\u5EA6\u5FC5\u9808\u5927\u65BC 0",
|
|
82814
82848
|
validationMaxLinesPositive: "\u6279\u6B21\u8655\u7406\u6700\u5927\u884C\u6578\u5FC5\u9808\u5927\u65BC 0",
|
|
82815
82849
|
validationConcurrencyPositive: "\u6279\u6B21\u8655\u7406\u4E26\u884C\u6578\u5FC5\u9808\u5927\u65BC 0",
|
|
82850
|
+
validationMaxLinesPerChunkPositive: "\u6BCF\u584A\u6700\u5927\u884C\u6578\u5FC5\u9808\u5927\u65BC 0",
|
|
82851
|
+
validationMinLinesPerChunkPositive: "\u6BCF\u584A\u6700\u5C0F\u884C\u6578\u5FC5\u9808\u5927\u65BC 0",
|
|
82852
|
+
validationMinCharsPerChunkPositive: "\u6BCF\u584A\u6700\u5C0F\u5B57\u5143\u6578\u5FC5\u9808\u5927\u65BC 0",
|
|
82853
|
+
validationOverlapLinesNonNegative: "\u91CD\u758A\u884C\u6578\u5FC5\u9808\u70BA\u975E\u8CA0\u6578",
|
|
82854
|
+
validationOverlapLessThanMaxLines: "\u91CD\u758A\u884C\u6578\u5FC5\u9808\u5C0F\u65BC\u6BCF\u584A\u6700\u5927\u884C\u6578",
|
|
82855
|
+
chunkingMaxLinesPerChunk: "\u6BCF\u584A\u6700\u5927\u884C\u6578:",
|
|
82856
|
+
chunkingMinLinesPerChunk: "\u6BCF\u584A\u6700\u5C0F\u884C\u6578:",
|
|
82857
|
+
chunkingMinCharsPerChunk: "\u6BCF\u584A\u6700\u5C0F\u5B57\u5143\u6578:",
|
|
82858
|
+
chunkingOverlapLines: "\u91CD\u758A\u884C\u6578:",
|
|
82816
82859
|
saveError: "\u5132\u5B58\u914D\u7F6E\u5931\u6557"
|
|
82817
82860
|
},
|
|
82818
82861
|
systemPromptConfig: {
|
|
@@ -83508,7 +83551,9 @@ var init_zh_TW = __esm({
|
|
|
83508
83551
|
customInputLabel: "\u81EA\u8A02\u8F38\u5165",
|
|
83509
83552
|
selectPrompt: "\u9078\u64C7\u4E00\u500B\u9078\u9805:",
|
|
83510
83553
|
enterResponse: "\u8ACB\u8F38\u5165\u60A8\u7684\u56DE\u7B54:",
|
|
83511
|
-
keyboardHints: "\u63D0\u793A: \u6309 'Enter' \u9078\u64C7 | \u6309 'e' \u7DE8\u8F2F\u7576\u524D\u9078\u9805"
|
|
83554
|
+
keyboardHints: "\u63D0\u793A: \u6309 'Enter' \u9078\u64C7 | \u6309 'e' \u7DE8\u8F2F\u7576\u524D\u9078\u9805",
|
|
83555
|
+
multiSelectHint: "\u591A\u9078\u6A21\u5F0F",
|
|
83556
|
+
multiSelectKeyboardHints: "\u2191\u2193 \u79FB\u52D5 | \u7A7A\u683C \u5207\u63DB | 1-9 \u5FEB\u901F\u5207\u63DB | \u56DE\u8ECA \u78BA\u8A8D | e \u7DE8\u8F2F"
|
|
83512
83557
|
},
|
|
83513
83558
|
toolConfirmation: {
|
|
83514
83559
|
header: "[\u5DE5\u5177\u78BA\u8A8D]",
|
|
@@ -83703,6 +83748,15 @@ var init_ja = __esm({
|
|
|
83703
83748
|
validationDimensionsPositive: "\u57CB\u3081\u8FBC\u307F\u6B21\u5143\u306F0\u3088\u308A\u5927\u304D\u3044\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059",
|
|
83704
83749
|
validationMaxLinesPositive: "\u30D0\u30C3\u30C1\u6700\u5927\u884C\u6570\u306F0\u3088\u308A\u5927\u304D\u3044\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059",
|
|
83705
83750
|
validationConcurrencyPositive: "\u30D0\u30C3\u30C1\u4E26\u884C\u6570\u306F0\u3088\u308A\u5927\u304D\u3044\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059",
|
|
83751
|
+
validationMaxLinesPerChunkPositive: "\u30C1\u30E3\u30F3\u30AF\u3042\u305F\u308A\u306E\u6700\u5927\u884C\u6570\u306F0\u3088\u308A\u5927\u304D\u3044\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059",
|
|
83752
|
+
validationMinLinesPerChunkPositive: "\u30C1\u30E3\u30F3\u30AF\u3042\u305F\u308A\u306E\u6700\u5C0F\u884C\u6570\u306F0\u3088\u308A\u5927\u304D\u3044\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059",
|
|
83753
|
+
validationMinCharsPerChunkPositive: "\u30C1\u30E3\u30F3\u30AF\u3042\u305F\u308A\u306E\u6700\u5C0F\u6587\u5B57\u6570\u306F0\u3088\u308A\u5927\u304D\u3044\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059",
|
|
83754
|
+
validationOverlapLinesNonNegative: "\u91CD\u8907\u884C\u6570\u306F0\u4EE5\u4E0A\u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059",
|
|
83755
|
+
validationOverlapLessThanMaxLines: "\u91CD\u8907\u884C\u6570\u306F\u30C1\u30E3\u30F3\u30AF\u3042\u305F\u308A\u306E\u6700\u5927\u884C\u6570\u3088\u308A\u5C0F\u3055\u304F\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059",
|
|
83756
|
+
chunkingMaxLinesPerChunk: "\u30C1\u30E3\u30F3\u30AF\u3042\u305F\u308A\u306E\u6700\u5927\u884C\u6570:",
|
|
83757
|
+
chunkingMinLinesPerChunk: "\u30C1\u30E3\u30F3\u30AF\u3042\u305F\u308A\u306E\u6700\u5C0F\u884C\u6570:",
|
|
83758
|
+
chunkingMinCharsPerChunk: "\u30C1\u30E3\u30F3\u30AF\u3042\u305F\u308A\u306E\u6700\u5C0F\u6587\u5B57\u6570:",
|
|
83759
|
+
chunkingOverlapLines: "\u91CD\u8907\u884C\u6570:",
|
|
83706
83760
|
saveError: "\u69CB\u6210\u306E\u4FDD\u5B58\u306B\u5931\u6557"
|
|
83707
83761
|
},
|
|
83708
83762
|
systemPromptConfig: {
|
|
@@ -84398,7 +84452,9 @@ var init_ja = __esm({
|
|
|
84398
84452
|
customInputLabel: "\u30AB\u30B9\u30BF\u30E0\u5165\u529B",
|
|
84399
84453
|
selectPrompt: "\u30AA\u30D7\u30B7\u30E7\u30F3\u3092\u9078\u629E:",
|
|
84400
84454
|
enterResponse: "\u56DE\u7B54\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044:",
|
|
84401
|
-
keyboardHints: "\u30D2\u30F3\u30C8: 'Enter' \u3067\u9078\u629E | 'e' \u3067\u9078\u629E\u4E2D\u306E\u30AA\u30D7\u30B7\u30E7\u30F3\u3092\u7DE8\u96C6"
|
|
84455
|
+
keyboardHints: "\u30D2\u30F3\u30C8: 'Enter' \u3067\u9078\u629E | 'e' \u3067\u9078\u629E\u4E2D\u306E\u30AA\u30D7\u30B7\u30E7\u30F3\u3092\u7DE8\u96C6",
|
|
84456
|
+
multiSelectHint: "\u8907\u6570\u9078\u629E\u30E2\u30FC\u30C9",
|
|
84457
|
+
multiSelectKeyboardHints: "\u2191\u2193 \u79FB\u52D5 | \u30B9\u30DA\u30FC\u30B9 \u5207\u66FF | 1-9 \u30AF\u30A4\u30C3\u30AF\u5207\u66FF | Enter \u78BA\u5B9A | e \u7DE8\u96C6"
|
|
84402
84458
|
},
|
|
84403
84459
|
toolConfirmation: {
|
|
84404
84460
|
header: "[\u30C4\u30FC\u30EB\u78BA\u8A8D]",
|
|
@@ -84593,6 +84649,15 @@ var init_ko = __esm({
|
|
|
84593
84649
|
validationDimensionsPositive: "\uC784\uBCA0\uB529 \uCC28\uC6D0\uC740 0\uBCF4\uB2E4 \uCEE4\uC57C \uD569\uB2C8\uB2E4",
|
|
84594
84650
|
validationMaxLinesPositive: "\uBC30\uCE58 \uCD5C\uB300 \uB77C\uC778 \uC218\uB294 0\uBCF4\uB2E4 \uCEE4\uC57C \uD569\uB2C8\uB2E4",
|
|
84595
84651
|
validationConcurrencyPositive: "\uBC30\uCE58 \uB3D9\uC2DC\uC131\uC740 0\uBCF4\uB2E4 \uCEE4\uC57C \uD569\uB2C8\uB2E4",
|
|
84652
|
+
validationMaxLinesPerChunkPositive: "\uCCAD\uD06C\uB2F9 \uCD5C\uB300 \uB77C\uC778 \uC218\uB294 0\uBCF4\uB2E4 \uCEE4\uC57C \uD569\uB2C8\uB2E4",
|
|
84653
|
+
validationMinLinesPerChunkPositive: "\uCCAD\uD06C\uB2F9 \uCD5C\uC18C \uB77C\uC778 \uC218\uB294 0\uBCF4\uB2E4 \uCEE4\uC57C \uD569\uB2C8\uB2E4",
|
|
84654
|
+
validationMinCharsPerChunkPositive: "\uCCAD\uD06C\uB2F9 \uCD5C\uC18C \uBB38\uC790 \uC218\uB294 0\uBCF4\uB2E4 \uCEE4\uC57C \uD569\uB2C8\uB2E4",
|
|
84655
|
+
validationOverlapLinesNonNegative: "\uC911\uCCA9 \uB77C\uC778 \uC218\uB294 \uC74C\uC218\uAC00 \uC544\uB2C8\uC5B4\uC57C \uD569\uB2C8\uB2E4",
|
|
84656
|
+
validationOverlapLessThanMaxLines: "\uC911\uCCA9 \uB77C\uC778 \uC218\uB294 \uCCAD\uD06C\uB2F9 \uCD5C\uB300 \uB77C\uC778 \uC218\uBCF4\uB2E4 \uC791\uC544\uC57C \uD569\uB2C8\uB2E4",
|
|
84657
|
+
chunkingMaxLinesPerChunk: "\uCCAD\uD06C\uB2F9 \uCD5C\uB300 \uB77C\uC778 \uC218:",
|
|
84658
|
+
chunkingMinLinesPerChunk: "\uCCAD\uD06C\uB2F9 \uCD5C\uC18C \uB77C\uC778 \uC218:",
|
|
84659
|
+
chunkingMinCharsPerChunk: "\uCCAD\uD06C\uB2F9 \uCD5C\uC18C \uBB38\uC790 \uC218:",
|
|
84660
|
+
chunkingOverlapLines: "\uC911\uCCA9 \uB77C\uC778 \uC218:",
|
|
84596
84661
|
saveError: "\uAD6C\uC131 \uC800\uC7A5 \uC2E4\uD328"
|
|
84597
84662
|
},
|
|
84598
84663
|
systemPromptConfig: {
|
|
@@ -85288,7 +85353,9 @@ var init_ko = __esm({
|
|
|
85288
85353
|
customInputLabel: "\uC0AC\uC6A9\uC790 \uC815\uC758 \uC785\uB825",
|
|
85289
85354
|
selectPrompt: "\uC635\uC158 \uC120\uD0DD:",
|
|
85290
85355
|
enterResponse: "\uB2F5\uBCC0\uC744 \uC785\uB825\uD558\uC138\uC694:",
|
|
85291
|
-
keyboardHints: "\uD301: 'Enter'\uB85C \uC120\uD0DD | 'e'\uB85C \uC120\uD0DD\uB41C \uC635\uC158 \uD3B8\uC9D1"
|
|
85356
|
+
keyboardHints: "\uD301: 'Enter'\uB85C \uC120\uD0DD | 'e'\uB85C \uC120\uD0DD\uB41C \uC635\uC158 \uD3B8\uC9D1",
|
|
85357
|
+
multiSelectHint: "\uB2E4\uC911 \uC120\uD0DD \uBAA8\uB4DC",
|
|
85358
|
+
multiSelectKeyboardHints: "\u2191\u2193 \uC774\uB3D9 | \uC2A4\uD398\uC774\uC2A4 \uD1A0\uAE00 | 1-9 \uBE60\uB978 \uD1A0\uAE00 | Enter \uD655\uC778 | e \uD3B8\uC9D1"
|
|
85292
85359
|
},
|
|
85293
85360
|
toolConfirmation: {
|
|
85294
85361
|
header: "[\uB3C4\uAD6C \uD655\uC778]",
|
|
@@ -85483,6 +85550,15 @@ var init_es = __esm({
|
|
|
85483
85550
|
validationDimensionsPositive: "Las dimensiones de incrustaci\xF3n deben ser mayores que 0",
|
|
85484
85551
|
validationMaxLinesPositive: "El m\xE1ximo de l\xEDneas por lote debe ser mayor que 0",
|
|
85485
85552
|
validationConcurrencyPositive: "La concurrencia de lote debe ser mayor que 0",
|
|
85553
|
+
validationMaxLinesPerChunkPositive: "Las l\xEDneas m\xE1ximas por fragmento deben ser mayores que 0",
|
|
85554
|
+
validationMinLinesPerChunkPositive: "Las l\xEDneas m\xEDnimas por fragmento deben ser mayores que 0",
|
|
85555
|
+
validationMinCharsPerChunkPositive: "Los caracteres m\xEDnimos por fragmento deben ser mayores que 0",
|
|
85556
|
+
validationOverlapLinesNonNegative: "Las l\xEDneas de superposici\xF3n deben ser no negativas",
|
|
85557
|
+
validationOverlapLessThanMaxLines: "Las l\xEDneas de superposici\xF3n deben ser menores que las l\xEDneas m\xE1ximas por fragmento",
|
|
85558
|
+
chunkingMaxLinesPerChunk: "L\xEDneas M\xE1ximas por Fragmento:",
|
|
85559
|
+
chunkingMinLinesPerChunk: "L\xEDneas M\xEDnimas por Fragmento:",
|
|
85560
|
+
chunkingMinCharsPerChunk: "Caracteres M\xEDnimos por Fragmento:",
|
|
85561
|
+
chunkingOverlapLines: "L\xEDneas de Superposici\xF3n:",
|
|
85486
85562
|
saveError: "Error al guardar la configuraci\xF3n"
|
|
85487
85563
|
},
|
|
85488
85564
|
systemPromptConfig: {
|
|
@@ -86178,7 +86254,9 @@ var init_es = __esm({
|
|
|
86178
86254
|
customInputLabel: "Entrada personalizada",
|
|
86179
86255
|
selectPrompt: "Seleccione una opci\xF3n:",
|
|
86180
86256
|
enterResponse: "Ingrese su respuesta:",
|
|
86181
|
-
keyboardHints: "Consejo: Presione 'Enter' para seleccionar | Presione 'e' para editar la opci\xF3n seleccionada"
|
|
86257
|
+
keyboardHints: "Consejo: Presione 'Enter' para seleccionar | Presione 'e' para editar la opci\xF3n seleccionada",
|
|
86258
|
+
multiSelectHint: "Modo multiselecci\xF3n",
|
|
86259
|
+
multiSelectKeyboardHints: "\u2191\u2193 Mover | Espacio Alternar | 1-9 Alternar r\xE1pido | Enter Confirmar | e Editar"
|
|
86182
86260
|
},
|
|
86183
86261
|
toolConfirmation: {
|
|
86184
86262
|
header: "[Confirmaci\xF3n de herramienta]",
|
|
@@ -88873,7 +88951,7 @@ var require_has_flag = __commonJS({
|
|
|
88873
88951
|
var require_supports_color = __commonJS({
|
|
88874
88952
|
"node_modules/supports-color/index.js"(exports2, module2) {
|
|
88875
88953
|
"use strict";
|
|
88876
|
-
var
|
|
88954
|
+
var os23 = __require("os");
|
|
88877
88955
|
var tty2 = __require("tty");
|
|
88878
88956
|
var hasFlag2 = require_has_flag();
|
|
88879
88957
|
var { env: env5 } = process;
|
|
@@ -88921,7 +88999,7 @@ var require_supports_color = __commonJS({
|
|
|
88921
88999
|
return min2;
|
|
88922
89000
|
}
|
|
88923
89001
|
if (process.platform === "win32") {
|
|
88924
|
-
const osRelease =
|
|
89002
|
+
const osRelease = os23.release().split(".");
|
|
88925
89003
|
if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
88926
89004
|
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
88927
89005
|
}
|
|
@@ -111267,7 +111345,7 @@ var require_third_party = __commonJS({
|
|
|
111267
111345
|
var require_supports_color2 = __commonJS2({
|
|
111268
111346
|
"node_modules/@babel/highlight/node_modules/supports-color/index.js"(exports22, module22) {
|
|
111269
111347
|
"use strict";
|
|
111270
|
-
var
|
|
111348
|
+
var os23 = __require("os");
|
|
111271
111349
|
var hasFlag2 = require_has_flag3();
|
|
111272
111350
|
var env5 = process.env;
|
|
111273
111351
|
var forceColor;
|
|
@@ -111305,7 +111383,7 @@ var require_third_party = __commonJS({
|
|
|
111305
111383
|
}
|
|
111306
111384
|
const min2 = forceColor ? 1 : 0;
|
|
111307
111385
|
if (process.platform === "win32") {
|
|
111308
|
-
const osRelease =
|
|
111386
|
+
const osRelease = os23.release().split(".");
|
|
111309
111387
|
if (Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
111310
111388
|
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
111311
111389
|
}
|
|
@@ -120482,7 +120560,7 @@ var require_parser_babel = __commonJS({
|
|
|
120482
120560
|
return o("\r");
|
|
120483
120561
|
case 120: {
|
|
120484
120562
|
let c;
|
|
120485
|
-
return { code: c, pos: r } =
|
|
120563
|
+
return { code: c, pos: r } = os23(t, r, e, s, 2, false, n, a), o(c === null ? null : String.fromCharCode(c));
|
|
120486
120564
|
}
|
|
120487
120565
|
case 117: {
|
|
120488
120566
|
let c;
|
|
@@ -120521,7 +120599,7 @@ var require_parser_babel = __commonJS({
|
|
|
120521
120599
|
return o(String.fromCharCode(u));
|
|
120522
120600
|
}
|
|
120523
120601
|
}
|
|
120524
|
-
function
|
|
120602
|
+
function os23(t, r, e, s, i, a, n, o) {
|
|
120525
120603
|
let u = r, c;
|
|
120526
120604
|
return { n: c, pos: r } = Fr(t, r, e, s, 16, i, a, false, o, !n), c === null && (n ? o.invalidEscapeSequence(u, e, s) : r = u - 1), { code: c, pos: r };
|
|
120527
120605
|
}
|
|
@@ -120556,9 +120634,9 @@ var require_parser_babel = __commonJS({
|
|
|
120556
120634
|
function Lr(t, r, e, s, i, a) {
|
|
120557
120635
|
let n = t.charCodeAt(r), o;
|
|
120558
120636
|
if (n === 123) {
|
|
120559
|
-
if (++r, { code: o, pos: r } =
|
|
120637
|
+
if (++r, { code: o, pos: r } = os23(t, r, e, s, t.indexOf("}", r) - r, true, i, a), ++r, o !== null && o > 1114111) if (i) a.invalidCodePoint(r, e, s);
|
|
120560
120638
|
else return { code: null, pos: r };
|
|
120561
|
-
} else ({ code: o, pos: r } =
|
|
120639
|
+
} else ({ code: o, pos: r } = os23(t, r, e, s, 4, false, i, a));
|
|
120562
120640
|
return { code: o, pos: r };
|
|
120563
120641
|
}
|
|
120564
120642
|
var Fl = ["at"], Ll = ["at"];
|
|
@@ -127479,16 +127557,16 @@ var require_parser_flow = __commonJS({
|
|
|
127479
127557
|
return t.c[n];
|
|
127480
127558
|
}
|
|
127481
127559
|
}
|
|
127482
|
-
function
|
|
127483
|
-
if (t.fun) return
|
|
127560
|
+
function os23(t, n) {
|
|
127561
|
+
if (t.fun) return os23(t.fun, n);
|
|
127484
127562
|
if (typeof t != "function") return t;
|
|
127485
127563
|
var e = t.length | 0;
|
|
127486
127564
|
if (e === 0) return t.apply(null, n);
|
|
127487
127565
|
var i = n.length | 0, x = e - i | 0;
|
|
127488
|
-
return x == 0 ? t.apply(null, n) : x < 0 ?
|
|
127566
|
+
return x == 0 ? t.apply(null, n) : x < 0 ? os23(t.apply(null, n.slice(0, e)), n.slice(e)) : function() {
|
|
127489
127567
|
for (var c = arguments.length == 0 ? 1 : arguments.length, s = new Array(n.length + c), p = 0; p < n.length; p++) s[p] = n[p];
|
|
127490
127568
|
for (var p = 0; p < arguments.length; p++) s[n.length + p] = arguments[p];
|
|
127491
|
-
return
|
|
127569
|
+
return os23(t, s);
|
|
127492
127570
|
};
|
|
127493
127571
|
}
|
|
127494
127572
|
function il() {
|
|
@@ -129154,22 +129232,22 @@ var require_parser_flow = __commonJS({
|
|
|
129154
129232
|
}
|
|
129155
129233
|
pi0();
|
|
129156
129234
|
function u(t, n) {
|
|
129157
|
-
return t.length == 1 ? t(n) :
|
|
129235
|
+
return t.length == 1 ? t(n) : os23(t, [n]);
|
|
129158
129236
|
}
|
|
129159
129237
|
function a(t, n, e) {
|
|
129160
|
-
return t.length == 2 ? t(n, e) :
|
|
129238
|
+
return t.length == 2 ? t(n, e) : os23(t, [n, e]);
|
|
129161
129239
|
}
|
|
129162
129240
|
function ir(t, n, e, i) {
|
|
129163
|
-
return t.length == 3 ? t(n, e, i) :
|
|
129241
|
+
return t.length == 3 ? t(n, e, i) : os23(t, [n, e, i]);
|
|
129164
129242
|
}
|
|
129165
129243
|
function R(t, n, e, i, x) {
|
|
129166
|
-
return t.length == 4 ? t(n, e, i, x) :
|
|
129244
|
+
return t.length == 4 ? t(n, e, i, x) : os23(t, [n, e, i, x]);
|
|
129167
129245
|
}
|
|
129168
129246
|
function b7(t, n, e, i, x, c) {
|
|
129169
|
-
return t.length == 5 ? t(n, e, i, x, c) :
|
|
129247
|
+
return t.length == 5 ? t(n, e, i, x, c) : os23(t, [n, e, i, x, c]);
|
|
129170
129248
|
}
|
|
129171
129249
|
function mi0(t, n, e, i, x, c, s, p) {
|
|
129172
|
-
return t.length == 7 ? t(n, e, i, x, c, s, p) :
|
|
129250
|
+
return t.length == 7 ? t(n, e, i, x, c, s, p) : os23(t, [n, e, i, x, c, s, p]);
|
|
129173
129251
|
}
|
|
129174
129252
|
var rN = [wt, r(TX), -1], nz = [wt, r(MH), -2], B7 = [wt, r(LH), -3], eN = [wt, r(sH), -4], Kt = [wt, r(QU), -7], tz = [wt, r(BY), -8], uz = [wt, r($U), -9], wn = [wt, r(TU), -11], sl = [wt, r(oX), -12], iz = [0, c7], _i0 = [4, 0, 0, 0, [12, 45, [4, 0, 0, 0, 0]]], nN = [0, [11, r('File "'), [2, 0, [11, r('", line '), [4, 0, 0, 0, [11, r(EH), [4, 0, 0, 0, [12, 45, [4, 0, 0, 0, [11, r(": "), [2, 0, 0]]]]]]]]]], r('File "%s", line %d, characters %d-%d: %s')], fz = [0, 0, [0, 0, 0], [0, 0, 0]], tN = r(""), uN = r("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"), Bv = [0, 0, 0, 0, 1, 0], xz = [0, r(Gx), r(va), r(go), r(so), r(za), r(Yf), r(Jx), r(pf), r(of2), r(Bx), r(ut), r(Yo), r(I7), r(If), r(px), r(_a21), r(lx), r(ef), r(gf), r(Xo), r(oo), r(Ho), r(yf), r(ic), r(Rf), r(To), r(ff), r(Ef), r(Bo), r(Xf), r(Tx), r(ax), r(Fa), r(kf), r(da), r(Qf), r(ao), r(Za), r(A7), r(O7), r(ox), r(Io), r(Mo), r(Wf), r(to), r(la), r(Ta), r(Sx), r(Go), r(ka), r(s7), r(bo), r(eo), r(vo), r(Hx), r(Xa), r(Ux), r(Mf), r(Nf), r(rc), r(Mx), r(Cf), r(ba), r(Fo), r(lf), r(ec), r(io), r(no), r(Au), r(Ix), r(ta), r(Ff), r(Uf), r(Eo), r(qx), r(Oc), r(Vo), r(jo), r(hx), r(xc), r(vi), r(ga), r(pa), r(Ic), r(No), r(kx), r(Nx), r(Tc), r(jf), r(uf), r(ix), r(yo), r(Ma), r(Ex), r(Uo), r(bf), r(po), r(yx), r(j7), r($o), r(mc), r(Kf), r(_i), r(_f), r(fo), r(zo), r(qu), r(gc), r(ma), r(Yx), r(Do), r(Ox), r(Co), r(r7), r(sf), r(wa), r(na), r(Wo), r(Gf), r(sc), r(ho), r(Ja), r(ex), r(cf), r(af), r(Cx), r(_c6), r(Na), r(Ga), r(xa), r(Ax), r(sa), r(Px), r(nf), r(nc), r(Wa), r(Ro), r(Sc), r($a), r(bx), r(kc), r(Lx), r(ko2), r(Rx), r(ux), r(Wx), r(Lo), r(Xx), r($x), r(dc), r(ur), r(yc), r(Af), r(hf), r(mx), r(Ua), r(jx), r(Tf), r(uc), r(Jf), r(wo), r(_o), r(tx), r(Vf), r(xf), r(Pf), r(xx), r(ca), r(Qa), r(ac), r(pc), r(Ya), r(Ko), r(wf), r(Ba), r(ro), r(pi), r(nx), r(rx), r(Ka), r(mf), r(lo), r(bc), r(Ec), r($f), r(zf), r(qa), r(Df), r(uo), r(co), r(lc), r(ra), r(So), r(Va), r(Qo), r(Qu), r(Le), r(mo), r(_x), r(Wu), r(vx), r(qf), r(Fc), r(df), r(Kx), r(Fx), r(Po), r(hc), r(P7), r(ha), r(Ha), r(Zf), r(Qx), r(Ea), r(Lf), r(Aa), r(g7), r(ua), r(xo), r(oa), r(dx), r(Zx), r(Vx), r(Jo), r(ja2), r(Hf), r(Ao), r(sx), r(Of), r(Dx), r(fa), r(Zo), r(Sf), r(Ca), r(tc), r(Da), r(Oa), r(Bf), r(cc), r(fx), r(wc), r(ou), r(Ia), r(ia), r(zx), r(wu)], az = [0, r("first_leading"), r("last_trailing")], oz = [0, 0];
|
|
129175
129253
|
yi(11, sl, oX), yi(10, wn, TU), yi(9, [wt, r(gY), jX], gY), yi(8, uz, $U), yi(7, tz, BY), yi(6, Kt, QU), yi(5, [wt, r(iY), -6], iY), yi(4, [wt, r(DH), -5], DH), yi(3, eN, sH), yi(2, B7, LH), yi(1, nz, MH), yi(0, rN, TX);
|
|
@@ -164763,7 +164841,7 @@ var require_parser_typescript = __commonJS({
|
|
|
164763
164841
|
}
|
|
164764
164842
|
function O5(e) {
|
|
164765
164843
|
let t = e.length - 1;
|
|
164766
|
-
for (; t >= 0 &&
|
|
164844
|
+
for (; t >= 0 && os23(e.charCodeAt(t)); ) t--;
|
|
164767
164845
|
return e.slice(0, t + 1);
|
|
164768
164846
|
}
|
|
164769
164847
|
function M5() {
|
|
@@ -165736,7 +165814,7 @@ ${fe.join(`
|
|
|
165736
165814
|
function Ls(e, t) {
|
|
165737
165815
|
return my(ss(e), t);
|
|
165738
165816
|
}
|
|
165739
|
-
function
|
|
165817
|
+
function os23(e) {
|
|
165740
165818
|
return N_(e) || un(e);
|
|
165741
165819
|
}
|
|
165742
165820
|
function N_(e) {
|
|
@@ -165837,7 +165915,7 @@ ${fe.join(`
|
|
|
165837
165915
|
}
|
|
165838
165916
|
break;
|
|
165839
165917
|
default:
|
|
165840
|
-
if (w > 127 &&
|
|
165918
|
+
if (w > 127 && os23(w)) {
|
|
165841
165919
|
t++;
|
|
165842
165920
|
continue;
|
|
165843
165921
|
}
|
|
@@ -165922,7 +166000,7 @@ ${fe.join(`
|
|
|
165922
166000
|
}
|
|
165923
166001
|
break e;
|
|
165924
166002
|
default:
|
|
165925
|
-
if (ae > 127 &&
|
|
166003
|
+
if (ae > 127 && os23(ae)) {
|
|
165926
166004
|
X && un(ae) && (N = true), r++;
|
|
165927
166005
|
continue;
|
|
165928
166006
|
}
|
|
@@ -166511,7 +166589,7 @@ ${fe.join(`
|
|
|
166511
166589
|
if (Le === 62 && Ne(ve.Unexpected_token_Did_you_mean_or_gt, g, 1), Le === 125 && Ne(ve.Unexpected_token_Did_you_mean_or_rbrace, g, 1), un(Le) && Re === 0) Re = -1;
|
|
166512
166590
|
else {
|
|
166513
166591
|
if (!xe && un(Le) && Re > 0) break;
|
|
166514
|
-
|
|
166592
|
+
os23(Le) || (Re = g);
|
|
166515
166593
|
}
|
|
166516
166594
|
g++;
|
|
166517
166595
|
}
|
|
@@ -167893,7 +167971,7 @@ ${fe.join(`
|
|
|
167893
167971
|
for (let r of e) {
|
|
167894
167972
|
if (!r.length) continue;
|
|
167895
167973
|
let s = 0;
|
|
167896
|
-
for (; s < r.length && s < t &&
|
|
167974
|
+
for (; s < r.length && s < t && os23(r.charCodeAt(s)); s++) ;
|
|
167897
167975
|
if (s < t && (t = s), t === 0) return 0;
|
|
167898
167976
|
}
|
|
167899
167977
|
return t === Gy ? void 0 : t;
|
|
@@ -167936,7 +168014,7 @@ ${fe.join(`
|
|
|
167936
168014
|
function _D() {
|
|
167937
168015
|
var e = "";
|
|
167938
168016
|
let t = (r) => e += r;
|
|
167939
|
-
return { getText: () => e, write: t, rawWrite: t, writeKeyword: t, writeOperator: t, writePunctuation: t, writeSpace: t, writeStringLiteral: t, writeLiteral: t, writeParameter: t, writeProperty: t, writeSymbol: (r, s) => t(r), writeTrailingSemicolon: t, writeComment: t, getTextPos: () => e.length, getLine: () => 0, getColumn: () => 0, getIndent: () => 0, isAtStartOfLine: () => false, hasTrailingComment: () => false, hasTrailingWhitespace: () => !!e.length &&
|
|
168017
|
+
return { getText: () => e, write: t, rawWrite: t, writeKeyword: t, writeOperator: t, writePunctuation: t, writeSpace: t, writeStringLiteral: t, writeLiteral: t, writeParameter: t, writeProperty: t, writeSymbol: (r, s) => t(r), writeTrailingSemicolon: t, writeComment: t, getTextPos: () => e.length, getLine: () => 0, getColumn: () => 0, getIndent: () => 0, isAtStartOfLine: () => false, hasTrailingComment: () => false, hasTrailingWhitespace: () => !!e.length && os23(e.charCodeAt(e.length - 1)), writeLine: () => e += " ", increaseIndent: yn, decreaseIndent: yn, clear: () => e = "" };
|
|
167940
168018
|
}
|
|
167941
168019
|
function cD(e, t) {
|
|
167942
168020
|
return e.configFilePath !== t.configFilePath || p3(e, t);
|
|
@@ -170361,7 +170439,7 @@ ${fe.join(`
|
|
|
170361
170439
|
r++;
|
|
170362
170440
|
}, decreaseIndent: () => {
|
|
170363
170441
|
r--;
|
|
170364
|
-
}, getIndent: () => r, getTextPos: () => t.length, getLine: () => f, getColumn: () => s ? r * Oo() : t.length - x, getText: () => t, isAtStartOfLine: () => s, hasTrailingComment: () => w, hasTrailingWhitespace: () => !!t.length &&
|
|
170442
|
+
}, getIndent: () => r, getTextPos: () => t.length, getLine: () => f, getColumn: () => s ? r * Oo() : t.length - x, getText: () => t, isAtStartOfLine: () => s, hasTrailingComment: () => w, hasTrailingWhitespace: () => !!t.length && os23(t.charCodeAt(t.length - 1)), clear: X, writeKeyword: B, writeOperator: B, writeParameter: B, writeProperty: B, writePunctuation: B, writeSpace: B, writeStringLiteral: B, writeSymbol: (Se, Ye) => B(Se), writeTrailingSemicolon: B, writeComment: N, getTextPosWithWriteLine: Te };
|
|
170365
170443
|
}
|
|
170366
170444
|
function kN(e) {
|
|
170367
170445
|
let t = false;
|
|
@@ -170963,7 +171041,7 @@ ${fe.join(`
|
|
|
170963
171041
|
}
|
|
170964
171042
|
function kO(e) {
|
|
170965
171043
|
let t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0, r = arguments.length > 2 ? arguments[2] : void 0;
|
|
170966
|
-
for (; e-- > t; ) if (!
|
|
171044
|
+
for (; e-- > t; ) if (!os23(r.text.charCodeAt(e))) return e;
|
|
170967
171045
|
}
|
|
170968
171046
|
function IO(e) {
|
|
170969
171047
|
let t = fl(e);
|
|
@@ -181430,7 +181508,7 @@ ${fe.join(`
|
|
|
181430
181508
|
nn(), l7(), KF(), u7(), XF(), YF(), QF(), ZF(), eB(), tB(), rB(), nB(), iB(), aB(), yB(), vB(), bB(), TB(), SB(), xB(), EB(), wB(), CB(), AB(), PB(), DB(), p7(), f7(), kB(), IB(), NB(), OB(), MB(), LB(), RB(), jB(), JB();
|
|
181431
181509
|
} }), FB = () => {
|
|
181432
181510
|
}, L7 = {};
|
|
181433
|
-
y(L7, { ANONYMOUS: () => ANONYMOUS, AccessFlags: () => Cg, AssertionLevel: () => $1, AssignmentDeclarationKind: () => Mg, AssignmentKind: () => Sv, Associativity: () => Ev, BreakpointResolver: () => ts_BreakpointResolver_exports, BuilderFileEmit: () => BuilderFileEmit, BuilderProgramKind: () => BuilderProgramKind, BuilderState: () => BuilderState, BundleFileSectionKind: () => ty, CallHierarchy: () => ts_CallHierarchy_exports, CharacterCodes: () => $g, CheckFlags: () => Tg, CheckMode: () => CheckMode, ClassificationType: () => ClassificationType, ClassificationTypeNames: () => ClassificationTypeNames, CommentDirectiveType: () => ig, Comparison: () => d, CompletionInfoFlags: () => CompletionInfoFlags, CompletionTriggerKind: () => CompletionTriggerKind, Completions: () => ts_Completions_exports, ConfigFileProgramReloadLevel: () => ConfigFileProgramReloadLevel, ContextFlags: () => pg, CoreServicesShimHostAdapter: () => CoreServicesShimHostAdapter, Debug: () => Y, DiagnosticCategory: () => qp, Diagnostics: () => ve, DocumentHighlights: () => DocumentHighlights, ElementFlags: () => wg, EmitFlags: () => Wp, EmitHint: () => Qg, EmitOnly: () => og, EndOfLineState: () => EndOfLineState, EnumKind: () => bg, ExitStatus: () => cg, ExportKind: () => ExportKind, Extension: () => Kg, ExternalEmitHelpers: () => Yg, FileIncludeKind: () => ag, FilePreprocessingDiagnosticsKind: () => sg, FileSystemEntryKind: () => FileSystemEntryKind, FileWatcherEventKind: () => FileWatcherEventKind, FindAllReferences: () => ts_FindAllReferences_exports, FlattenLevel: () => FlattenLevel, FlowFlags: () => il, ForegroundColorEscapeSequences: () => ForegroundColorEscapeSequences, FunctionFlags: () => xv, GeneratedIdentifierFlags: () => rg, GetLiteralTextFlags: () => vv, GoToDefinition: () => ts_GoToDefinition_exports, HighlightSpanKind: () => HighlightSpanKind, ImportKind: () => ImportKind, ImportsNotUsedAsValues: () => Ug, IndentStyle: () => IndentStyle, IndexKind: () => Dg, InferenceFlags: () => Ng, InferencePriority: () => Ig, InlayHintKind: () => InlayHintKind, InlayHints: () => ts_InlayHints_exports, InternalEmitFlags: () => Xg, InternalSymbolName: () => Sg, InvalidatedProjectKind: () => InvalidatedProjectKind, JsDoc: () => ts_JsDoc_exports, JsTyping: () => ts_JsTyping_exports, JsxEmit: () => qg, JsxFlags: () => tg, JsxReferenceKind: () => Ag, LanguageServiceMode: () => LanguageServiceMode, LanguageServiceShimHostAdapter: () => LanguageServiceShimHostAdapter, LanguageVariant: () => Hg, LexicalEnvironmentFlags: () => ey, ListFormat: () => ry, LogLevel: () => Y1, MemberOverrideStatus: () => lg, ModifierFlags: () => Mp, ModuleDetectionKind: () => Rg, ModuleInstanceState: () => ModuleInstanceState, ModuleKind: () => Bg, ModuleResolutionKind: () => Lg, ModuleSpecifierEnding: () => jv, NavigateTo: () => ts_NavigateTo_exports, NavigationBar: () => ts_NavigationBar_exports, NewLineKind: () => zg, NodeBuilderFlags: () => fg, NodeCheckFlags: () => xg, NodeFactoryFlags: () => Fv, NodeFlags: () => Op, NodeResolutionFeatures: () => NodeResolutionFeatures, ObjectFlags: () => Fp, OperationCanceledException: () => Rp, OperatorPrecedence: () => wv, OrganizeImports: () => ts_OrganizeImports_exports, OrganizeImportsMode: () => OrganizeImportsMode, OuterExpressionKinds: () => Zg, OutliningElementsCollector: () => ts_OutliningElementsCollector_exports, OutliningSpanKind: () => OutliningSpanKind, OutputFileType: () => OutputFileType, PackageJsonAutoImportPreference: () => PackageJsonAutoImportPreference, PackageJsonDependencyGroup: () => PackageJsonDependencyGroup, PatternMatchKind: () => PatternMatchKind, PollingInterval: () => PollingInterval, PollingWatchKind: () => Fg, PragmaKindFlags: () => ny, PrivateIdentifierKind: () => PrivateIdentifierKind, ProcessLevel: () => ProcessLevel, QuotePreference: () => QuotePreference, RelationComparisonResult: () => Lp, Rename: () => ts_Rename_exports, ScriptElementKind: () => ScriptElementKind, ScriptElementKindModifier: () => ScriptElementKindModifier, ScriptKind: () => Wg, ScriptSnapshot: () => ScriptSnapshot, ScriptTarget: () => Vg, SemanticClassificationFormat: () => SemanticClassificationFormat, SemanticMeaning: () => SemanticMeaning, SemicolonPreference: () => SemicolonPreference, SignatureCheckMode: () => SignatureCheckMode, SignatureFlags: () => Bp, SignatureHelp: () => ts_SignatureHelp_exports, SignatureKind: () => Pg, SmartSelectionRange: () => ts_SmartSelectionRange_exports, SnippetKind: () => zp, SortKind: () => H1, StructureIsReused: () => _g, SymbolAccessibility: () => hg, SymbolDisplay: () => ts_SymbolDisplay_exports, SymbolDisplayPartKind: () => SymbolDisplayPartKind, SymbolFlags: () => jp, SymbolFormatFlags: () => mg, SyntaxKind: () => Np, SyntheticSymbolKind: () => gg, Ternary: () => Og, ThrottledCancellationToken: () => O7, TokenClass: () => TokenClass, TokenFlags: () => ng, TransformFlags: () => Up, TypeFacts: () => TypeFacts, TypeFlags: () => Jp, TypeFormatFlags: () => dg, TypeMapKind: () => kg, TypePredicateKind: () => yg, TypeReferenceSerializationKind: () => vg, TypeScriptServicesFactory: () => TypeScriptServicesFactory, UnionReduction: () => ug, UpToDateStatusType: () => UpToDateStatusType, VarianceFlags: () => Eg, Version: () => Version, VersionRange: () => VersionRange, WatchDirectoryFlags: () => Gg, WatchDirectoryKind: () => Jg, WatchFileKind: () => jg, WatchLogLevel: () => WatchLogLevel, WatchType: () => WatchType, accessPrivateIdentifier: () => accessPrivateIdentifier, addEmitFlags: () => addEmitFlags, addEmitHelper: () => addEmitHelper, addEmitHelpers: () => addEmitHelpers, addInternalEmitFlags: () => addInternalEmitFlags, addNodeFactoryPatcher: () => jL, addObjectAllocatorPatcher: () => sM, addRange: () => jr, addRelatedInfo: () => Rl, addSyntheticLeadingComment: () => addSyntheticLeadingComment, addSyntheticTrailingComment: () => addSyntheticTrailingComment, addToSeen: () => GO, advancedAsyncSuperHelper: () => advancedAsyncSuperHelper, affectsDeclarationPathOptionDeclarations: () => affectsDeclarationPathOptionDeclarations, affectsEmitOptionDeclarations: () => affectsEmitOptionDeclarations, allKeysStartWithDot: () => allKeysStartWithDot, altDirectorySeparator: () => py, and: () => E5, append: () => tr, appendIfUnique: () => g_, arrayFrom: () => Za, arrayIsEqualTo: () => Hc, arrayIsHomogeneous: () => fL, arrayIsSorted: () => Wc, arrayOf: () => yo, arrayReverseIterator: () => y_, arrayToMap: () => Zc, arrayToMultiMap: () => bo, arrayToNumericMap: () => Os, arraysEqual: () => ke, assertType: () => C5, assign: () => vo, assignHelper: () => assignHelper, asyncDelegator: () => asyncDelegator, asyncGeneratorHelper: () => asyncGeneratorHelper, asyncSuperHelper: () => asyncSuperHelper, asyncValues: () => asyncValues, attachFileToDiagnostics: () => qs, awaitHelper: () => awaitHelper, awaiterHelper: () => awaiterHelper, base64decode: () => mO, base64encode: () => dO, binarySearch: () => Ya, binarySearchKey: () => b_, bindSourceFile: () => bindSourceFile, breakIntoCharacterSpans: () => breakIntoCharacterSpans, breakIntoWordSpans: () => breakIntoWordSpans, buildLinkParts: () => buildLinkParts, buildOpts: () => buildOpts, buildOverload: () => buildOverload, bundlerModuleNameResolver: () => bundlerModuleNameResolver, canBeConvertedToAsync: () => canBeConvertedToAsync, canHaveDecorators: () => ME, canHaveExportModifier: () => AL, canHaveFlowNode: () => jI, canHaveIllegalDecorators: () => rJ, canHaveIllegalModifiers: () => nJ, canHaveIllegalType: () => tJ, canHaveIllegalTypeParameters: () => IE, canHaveJSDoc: () => Af, canHaveLocals: () => zP, canHaveModifiers: () => fc, canHaveSymbol: () => UP, canJsonReportNoInputFiles: () => canJsonReportNoInputFiles, canProduceDiagnostics: () => canProduceDiagnostics, canUsePropertyAccess: () => PL, canWatchDirectoryOrFile: () => canWatchDirectoryOrFile, cartesianProduct: () => P5, cast: () => ti, chainBundle: () => chainBundle, chainDiagnosticMessages: () => lM, changeAnyExtension: () => RT, changeCompilerHostLikeToUseCache: () => changeCompilerHostLikeToUseCache, changeExtension: () => KM, changesAffectModuleResolution: () => cD, changesAffectingProgramStructure: () => lD, childIsDecorated: () => h0, classElementOrClassElementParameterIsDecorated: () => sI, classOrConstructorParameterIsDecorated: () => aI, classPrivateFieldGetHelper: () => classPrivateFieldGetHelper, classPrivateFieldInHelper: () => classPrivateFieldInHelper, classPrivateFieldSetHelper: () => classPrivateFieldSetHelper, classicNameResolver: () => classicNameResolver, classifier: () => ts_classifier_exports, cleanExtendedConfigCache: () => cleanExtendedConfigCache, clear: () => nt, clearMap: () => qO, clearSharedExtendedConfigFileWatcher: () => clearSharedExtendedConfigFileWatcher, climbPastPropertyAccess: () => climbPastPropertyAccess, climbPastPropertyOrElementAccess: () => climbPastPropertyOrElementAccess, clone: () => E_, cloneCompilerOptions: () => cloneCompilerOptions, closeFileWatcher: () => MO, closeFileWatcherOf: () => closeFileWatcherOf, codefix: () => ts_codefix_exports, collapseTextChangeRangesAcrossMultipleVersions: () => CA, collectExternalModuleInfo: () => collectExternalModuleInfo, combine: () => $c, combinePaths: () => tn, commentPragmas: () => Vp, commonOptionsWithBuild: () => commonOptionsWithBuild, commonPackageFolders: () => Pv, compact: () => Gc, compareBooleans: () => j1, compareDataObjects: () => px, compareDiagnostics: () => av, compareDiagnosticsSkipRelatedInformation: () => qf, compareEmitHelpers: () => compareEmitHelpers, compareNumberOfDirectorySeparators: () => $M, comparePaths: () => tA, comparePathsCaseInsensitive: () => eA, comparePathsCaseSensitive: () => Z5, comparePatternKeys: () => comparePatternKeys, compareProperties: () => R1, compareStringsCaseInsensitive: () => C_, compareStringsCaseInsensitiveEslintCompatible: () => O1, compareStringsCaseSensitive: () => ri, compareStringsCaseSensitiveUI: () => L1, compareTextSpans: () => I1, compareValues: () => Vr, compileOnSaveCommandLineOption: () => compileOnSaveCommandLineOption, compilerOptionsAffectDeclarationPath: () => DM, compilerOptionsAffectEmit: () => PM, compilerOptionsAffectSemanticDiagnostics: () => AM, compilerOptionsDidYouMeanDiagnostics: () => compilerOptionsDidYouMeanDiagnostics, compilerOptionsIndicateEsModules: () => compilerOptionsIndicateEsModules, compose: () => k1, computeCommonSourceDirectoryOfFilenames: () => computeCommonSourceDirectoryOfFilenames, computeLineAndCharacterOfPosition: () => my, computeLineOfPosition: () => k_, computeLineStarts: () => Kp, computePositionOfLineAndCharacter: () => dy, computeSignature: () => computeSignature, computeSignatureWithDiagnostics: () => computeSignatureWithDiagnostics, computeSuggestionDiagnostics: () => computeSuggestionDiagnostics, concatenate: () => Ft, concatenateDiagnosticMessageChains: () => uM, consumesNodeCoreModules: () => consumesNodeCoreModules, contains: () => pe, containsIgnoredPath: () => Hx, containsObjectRestOrSpread: () => A2, containsParseError: () => Ky, containsPath: () => jT, convertCompilerOptionsForTelemetry: () => convertCompilerOptionsForTelemetry, convertCompilerOptionsFromJson: () => convertCompilerOptionsFromJson, convertJsonOption: () => convertJsonOption, convertToBase64: () => ix, convertToObject: () => convertToObject, convertToObjectWorker: () => convertToObjectWorker, convertToOptionsWithAbsolutePaths: () => convertToOptionsWithAbsolutePaths, convertToRelativePath: () => nA, convertToTSConfig: () => convertToTSConfig, convertTypeAcquisitionFromJson: () => convertTypeAcquisitionFromJson, copyComments: () => copyComments, copyEntries: () => dD, copyLeadingComments: () => copyLeadingComments, copyProperties: () => H, copyTrailingAsLeadingComments: () => copyTrailingAsLeadingComments, copyTrailingComments: () => copyTrailingComments, couldStartTrivia: () => pA, countWhere: () => Xe, createAbstractBuilder: () => createAbstractBuilder, createAccessorPropertyBackingField: () => LJ, createAccessorPropertyGetRedirector: () => RJ, createAccessorPropertySetRedirector: () => jJ, createBaseNodeFactory: () => S8, createBinaryExpressionTrampoline: () => PJ, createBindingHelper: () => createBindingHelper, createBuildInfo: () => createBuildInfo, createBuilderProgram: () => createBuilderProgram, createBuilderProgramUsingProgramBuildInfo: () => createBuilderProgramUsingProgramBuildInfo, createBuilderStatusReporter: () => createBuilderStatusReporter, createCacheWithRedirects: () => createCacheWithRedirects, createCacheableExportInfoMap: () => createCacheableExportInfoMap, createCachedDirectoryStructureHost: () => createCachedDirectoryStructureHost, createClassifier: () => createClassifier, createCommentDirectivesMap: () => JD, createCompilerDiagnostic: () => Ol, createCompilerDiagnosticForInvalidCustomType: () => createCompilerDiagnosticForInvalidCustomType, createCompilerDiagnosticFromMessageChain: () => cM, createCompilerHost: () => createCompilerHost, createCompilerHostFromProgramHost: () => createCompilerHostFromProgramHost, createCompilerHostWorker: () => createCompilerHostWorker, createDetachedDiagnostic: () => Ro, createDiagnosticCollection: () => TN, createDiagnosticForFileFromMessageChain: () => mk, createDiagnosticForNode: () => uk, createDiagnosticForNodeArray: () => pk, createDiagnosticForNodeArrayFromMessageChain: () => dk, createDiagnosticForNodeFromMessageChain: () => fk, createDiagnosticForNodeInSourceFile: () => P3, createDiagnosticForRange: () => gk, createDiagnosticMessageChainFromDiagnostic: () => hk, createDiagnosticReporter: () => createDiagnosticReporter, createDocumentPositionMapper: () => createDocumentPositionMapper, createDocumentRegistry: () => createDocumentRegistry, createDocumentRegistryInternal: () => createDocumentRegistryInternal, createEmitAndSemanticDiagnosticsBuilderProgram: () => createEmitAndSemanticDiagnosticsBuilderProgram, createEmitHelperFactory: () => createEmitHelperFactory, createEmptyExports: () => Dj, createExpressionForJsxElement: () => Ij, createExpressionForJsxFragment: () => Nj, createExpressionForObjectLiteralElementLike: () => Fj, createExpressionForPropertyName: () => vE, createExpressionFromEntityName: () => yE, createExternalHelpersImportDeclarationIfNeeded: () => $j, createFileDiagnostic: () => iv, createFileDiagnosticFromMessageChain: () => r0, createForOfBindingStatement: () => Oj, createGetCanonicalFileName: () => wp, createGetSourceFile: () => createGetSourceFile, createGetSymbolAccessibilityDiagnosticForNode: () => createGetSymbolAccessibilityDiagnosticForNode, createGetSymbolAccessibilityDiagnosticForNodeName: () => createGetSymbolAccessibilityDiagnosticForNodeName, createGetSymbolWalker: () => createGetSymbolWalker, createIncrementalCompilerHost: () => createIncrementalCompilerHost, createIncrementalProgram: () => createIncrementalProgram, createInputFiles: () => VL, createInputFilesWithFilePaths: () => C8, createInputFilesWithFileTexts: () => A8, createJsxFactoryExpression: () => gE, createLanguageService: () => lB, createLanguageServiceSourceFile: () => N2, createMemberAccessForPropertyName: () => hd, createModeAwareCache: () => createModeAwareCache, createModeAwareCacheKey: () => createModeAwareCacheKey, createModuleResolutionCache: () => createModuleResolutionCache, createModuleResolutionLoader: () => createModuleResolutionLoader, createModuleSpecifierResolutionHost: () => createModuleSpecifierResolutionHost, createMultiMap: () => Be, createNodeConverters: () => x8, createNodeFactory: () => Zf, createOptionNameMap: () => createOptionNameMap, createOverload: () => createOverload, createPackageJsonImportFilter: () => createPackageJsonImportFilter, createPackageJsonInfo: () => createPackageJsonInfo, createParenthesizerRules: () => createParenthesizerRules, createPatternMatcher: () => createPatternMatcher, createPrependNodes: () => createPrependNodes, createPrinter: () => createPrinter, createPrinterWithDefaults: () => createPrinterWithDefaults, createPrinterWithRemoveComments: () => createPrinterWithRemoveComments, createPrinterWithRemoveCommentsNeverAsciiEscape: () => createPrinterWithRemoveCommentsNeverAsciiEscape, createPrinterWithRemoveCommentsOmitTrailingSemicolon: () => createPrinterWithRemoveCommentsOmitTrailingSemicolon, createProgram: () => createProgram, createProgramHost: () => createProgramHost, createPropertyNameNodeForIdentifierOrLiteral: () => EL, createQueue: () => Fr, createRange: () => Jf, createRedirectedBuilderProgram: () => createRedirectedBuilderProgram, createResolutionCache: () => createResolutionCache, createRuntimeTypeSerializer: () => createRuntimeTypeSerializer, createScanner: () => Po, createSemanticDiagnosticsBuilderProgram: () => createSemanticDiagnosticsBuilderProgram, createSet: () => Cr, createSolutionBuilder: () => createSolutionBuilder, createSolutionBuilderHost: () => createSolutionBuilderHost, createSolutionBuilderWithWatch: () => createSolutionBuilderWithWatch, createSolutionBuilderWithWatchHost: () => createSolutionBuilderWithWatchHost, createSortedArray: () => zc, createSourceFile: () => YE, createSourceMapGenerator: () => createSourceMapGenerator, createSourceMapSource: () => HL, createSuperAccessVariableStatement: () => createSuperAccessVariableStatement, createSymbolTable: () => oD, createSymlinkCache: () => MM, createSystemWatchFunctions: () => createSystemWatchFunctions, createTextChange: () => createTextChange, createTextChangeFromStartLength: () => createTextChangeFromStartLength, createTextChangeRange: () => Zp, createTextRangeFromNode: () => createTextRangeFromNode, createTextRangeFromSpan: () => createTextRangeFromSpan, createTextSpan: () => L_, createTextSpanFromBounds: () => ha, createTextSpanFromNode: () => createTextSpanFromNode, createTextSpanFromRange: () => createTextSpanFromRange, createTextSpanFromStringLiteralLikeContent: () => createTextSpanFromStringLiteralLikeContent, createTextWriter: () => DN, createTokenRange: () => bO, createTypeChecker: () => createTypeChecker, createTypeReferenceDirectiveResolutionCache: () => createTypeReferenceDirectiveResolutionCache, createTypeReferenceResolutionLoader: () => createTypeReferenceResolutionLoader, createUnderscoreEscapedMultiMap: () => Ht, createUnparsedSourceFile: () => UL, createWatchCompilerHost: () => createWatchCompilerHost2, createWatchCompilerHostOfConfigFile: () => createWatchCompilerHostOfConfigFile, createWatchCompilerHostOfFilesAndCompilerOptions: () => createWatchCompilerHostOfFilesAndCompilerOptions, createWatchFactory: () => createWatchFactory, createWatchHost: () => createWatchHost, createWatchProgram: () => createWatchProgram, createWatchStatusReporter: () => createWatchStatusReporter, createWriteFileMeasuringIO: () => createWriteFileMeasuringIO, declarationNameToString: () => A3, decodeMappings: () => decodeMappings, decodedTextSpanIntersectsWith: () => Sy, decorateHelper: () => decorateHelper, deduplicate: () => ji, defaultIncludeSpec: () => defaultIncludeSpec, defaultInitCompilerOptions: () => defaultInitCompilerOptions, defaultMaximumTruncationLength: () => r8, detectSortCaseSensitivity: () => Vc, diagnosticCategoryName: () => z5, diagnosticToString: () => diagnosticToString, directoryProbablyExists: () => sx, directorySeparator: () => zn, displayPart: () => displayPart, displayPartsToString: () => cB, disposeEmitNodes: () => disposeEmitNodes, documentSpansEqual: () => documentSpansEqual, dumpTracingLegend: () => dumpTracingLegend, elementAt: () => wT, elideNodes: () => IJ, emitComments: () => U4, emitDetachedComments: () => GN, emitFiles: () => emitFiles, emitFilesAndReportErrors: () => emitFilesAndReportErrors, emitFilesAndReportErrorsAndGetExitStatus: () => emitFilesAndReportErrorsAndGetExitStatus, emitModuleKindIsNonNodeESM: () => mM, emitNewLineBeforeLeadingCommentOfPosition: () => HN, emitNewLineBeforeLeadingComments: () => B4, emitNewLineBeforeLeadingCommentsOfPosition: () => q4, emitSkippedWithNoDiagnostics: () => emitSkippedWithNoDiagnostics, emitUsingBuildInfo: () => emitUsingBuildInfo, emptyArray: () => Bt, emptyFileSystemEntries: () => T8, emptyMap: () => V1, emptyOptions: () => emptyOptions, emptySet: () => ET, endsWith: () => es2, ensurePathIsNonModuleName: () => _y, ensureScriptKind: () => Nx, ensureTrailingDirectorySeparator: () => wo, entityNameToString: () => ls, enumerateInsertsAndDeletes: () => A5, equalOwnProperties: () => S_, equateStringsCaseInsensitive: () => Ms, equateStringsCaseSensitive: () => To, equateValues: () => fa, esDecorateHelper: () => esDecorateHelper, escapeJsxAttributeString: () => A4, escapeLeadingUnderscores: () => vi, escapeNonAsciiString: () => Of, escapeSnippetText: () => xL, escapeString: () => Nf, every: () => me, expandPreOrPostfixIncrementOrDecrementExpression: () => Bj, explainFiles: () => explainFiles, explainIfFileIsRedirectAndImpliedFormat: () => explainIfFileIsRedirectAndImpliedFormat, exportAssignmentIsAlias: () => I0, exportStarHelper: () => exportStarHelper, expressionResultIsUnused: () => gL, extend: () => S, extendsHelper: () => extendsHelper, extensionFromPath: () => QM, extensionIsTS: () => qx, externalHelpersModuleNameText: () => Kf, factory: () => si, fileExtensionIs: () => ns, fileExtensionIsOneOf: () => da, fileIncludeReasonToDiagnostics: () => fileIncludeReasonToDiagnostics, filter: () => ee, filterMutate: () => je, filterSemanticDiagnostics: () => filterSemanticDiagnostics, find: () => Ae, findAncestor: () => zi, findBestPatternMatch: () => TT, findChildOfKind: () => findChildOfKind, findComputedPropertyNameCacheAssignment: () => JJ, findConfigFile: () => findConfigFile, findContainingList: () => findContainingList, findDiagnosticForNode: () => findDiagnosticForNode, findFirstNonJsxWhitespaceToken: () => findFirstNonJsxWhitespaceToken, findIndex: () => he, findLast: () => te, findLastIndex: () => Pe, findListItemInfo: () => findListItemInfo, findMap: () => R, findModifier: () => findModifier, findNextToken: () => findNextToken, findPackageJson: () => findPackageJson, findPackageJsons: () => findPackageJsons, findPrecedingMatchingToken: () => findPrecedingMatchingToken, findPrecedingToken: () => findPrecedingToken, findSuperStatementIndex: () => findSuperStatementIndex, findTokenOnLeftOfPosition: () => findTokenOnLeftOfPosition, findUseStrictPrologue: () => TE, first: () => fo, firstDefined: () => q, firstDefinedIterator: () => W, firstIterator: () => v_, firstOrOnly: () => firstOrOnly, firstOrUndefined: () => pa, firstOrUndefinedIterator: () => Xc, fixupCompilerOptions: () => fixupCompilerOptions, flatMap: () => ne, flatMapIterator: () => Fe, flatMapToMutable: () => ge, flatten: () => ct, flattenCommaList: () => BJ, flattenDestructuringAssignment: () => flattenDestructuringAssignment, flattenDestructuringBinding: () => flattenDestructuringBinding, flattenDiagnosticMessageText: () => flattenDiagnosticMessageText, forEach: () => c, forEachAncestor: () => uD, forEachAncestorDirectory: () => FT, forEachChild: () => xr, forEachChildRecursively: () => D2, forEachEmittedFile: () => forEachEmittedFile, forEachEnclosingBlockScopeContainer: () => ok, forEachEntry: () => pD, forEachExternalModuleToImportFrom: () => forEachExternalModuleToImportFrom, forEachImportClauseDeclaration: () => NI, forEachKey: () => fD, forEachLeadingCommentRange: () => fA, forEachNameInAccessChainWalkingLeft: () => QO, forEachResolvedProjectReference: () => forEachResolvedProjectReference, forEachReturnStatement: () => Pk, forEachRight: () => M, forEachTrailingCommentRange: () => dA, forEachUnique: () => forEachUnique, forEachYieldExpression: () => Dk, forSomeAncestorDirectory: () => WO, formatColorAndReset: () => formatColorAndReset, formatDiagnostic: () => formatDiagnostic, formatDiagnostics: () => formatDiagnostics, formatDiagnosticsWithColorAndContext: () => formatDiagnosticsWithColorAndContext, formatGeneratedName: () => bd, formatGeneratedNamePart: () => C2, formatLocation: () => formatLocation, formatMessage: () => _M, formatStringFromArgs: () => X_, formatting: () => ts_formatting_exports, fullTripleSlashAMDReferencePathRegEx: () => Tv, fullTripleSlashReferencePathRegEx: () => bv, generateDjb2Hash: () => generateDjb2Hash, generateTSConfig: () => generateTSConfig, generatorHelper: () => generatorHelper, getAdjustedReferenceLocation: () => getAdjustedReferenceLocation, getAdjustedRenameLocation: () => getAdjustedRenameLocation, getAliasDeclarationFromName: () => u4, getAllAccessorDeclarations: () => W0, getAllDecoratorsOfClass: () => getAllDecoratorsOfClass, getAllDecoratorsOfClassElement: () => getAllDecoratorsOfClassElement, getAllJSDocTags: () => MS, getAllJSDocTagsOfKind: () => UA, getAllKeys: () => T_, getAllProjectOutputs: () => getAllProjectOutputs, getAllSuperTypeNodes: () => h4, getAllUnscopedEmitHelpers: () => getAllUnscopedEmitHelpers, getAllowJSCompilerOption: () => Ax, getAllowSyntheticDefaultImports: () => TM, getAncestor: () => eN, getAnyExtensionFromPath: () => Gp, getAreDeclarationMapsEnabled: () => bM, getAssignedExpandoInitializer: () => bI, getAssignedName: () => yS, getAssignmentDeclarationKind: () => ps, getAssignmentDeclarationPropertyAccessKind: () => K3, getAssignmentTargetKind: () => o4, getAutomaticTypeDirectiveNames: () => getAutomaticTypeDirectiveNames, getBaseFileName: () => sl, getBinaryOperatorPrecedence: () => Dl, getBuildInfo: () => getBuildInfo, getBuildInfoFileVersionMap: () => getBuildInfoFileVersionMap, getBuildInfoText: () => getBuildInfoText, getBuildOrderFromAnyBuildOrder: () => getBuildOrderFromAnyBuildOrder, getBuilderCreationParameters: () => getBuilderCreationParameters, getBuilderFileEmit: () => getBuilderFileEmit, getCheckFlags: () => ux, getClassExtendsHeritageElement: () => d4, getClassLikeDeclarationOfSymbol: () => dx, getCombinedLocalAndExportSymbolFlags: () => jO, getCombinedModifierFlags: () => ef, getCombinedNodeFlags: () => tf, getCombinedNodeFlagsAlwaysIncludeJSDoc: () => PA, getCommentRange: () => getCommentRange, getCommonSourceDirectory: () => getCommonSourceDirectory, getCommonSourceDirectoryOfConfig: () => getCommonSourceDirectoryOfConfig, getCompilerOptionValue: () => uv, getCompilerOptionsDiffValue: () => getCompilerOptionsDiffValue, getConditions: () => getConditions, getConfigFileParsingDiagnostics: () => getConfigFileParsingDiagnostics, getConstantValue: () => getConstantValue, getContainerNode: () => getContainerNode, getContainingClass: () => Vk, getContainingClassStaticBlock: () => Hk, getContainingFunction: () => zk, getContainingFunctionDeclaration: () => Wk, getContainingFunctionOrClassStaticBlock: () => Gk, getContainingNodeArray: () => yL, getContainingObjectLiteralElement: () => S7, getContextualTypeFromParent: () => getContextualTypeFromParent, getContextualTypeFromParentOrAncestorTypeNode: () => getContextualTypeFromParentOrAncestorTypeNode, getCurrentTime: () => getCurrentTime, getDeclarationDiagnostics: () => getDeclarationDiagnostics, getDeclarationEmitExtensionForPath: () => O4, getDeclarationEmitOutputFilePath: () => ON, getDeclarationEmitOutputFilePathWorker: () => N4, getDeclarationFromName: () => XI, getDeclarationModifierFlagsFromSymbol: () => LO, getDeclarationOfKind: () => aD, getDeclarationsOfKind: () => sD, getDeclaredExpandoInitializer: () => yI, getDecorators: () => kA, getDefaultCompilerOptions: () => y7, getDefaultExportInfoWorker: () => getDefaultExportInfoWorker, getDefaultFormatCodeSettings: () => getDefaultFormatCodeSettings, getDefaultLibFileName: () => aS, getDefaultLibFilePath: () => gB, getDefaultLikeExportInfo: () => getDefaultLikeExportInfo, getDiagnosticText: () => getDiagnosticText, getDiagnosticsWithinSpan: () => getDiagnosticsWithinSpan, getDirectoryPath: () => ma, getDocumentPositionMapper: () => getDocumentPositionMapper, getESModuleInterop: () => ov, getEditsForFileRename: () => getEditsForFileRename, getEffectiveBaseTypeNode: () => f4, getEffectiveConstraintOfTypeParameter: () => HA, getEffectiveContainerForJSDocTemplateTag: () => FI, getEffectiveImplementsTypeNodes: () => m4, getEffectiveInitializer: () => V3, getEffectiveJSDocHost: () => A0, getEffectiveModifierFlags: () => Rf, getEffectiveModifierFlagsAlwaysIncludeJSDoc: () => K4, getEffectiveModifierFlagsNoCache: () => Y4, getEffectiveReturnTypeNode: () => zN, getEffectiveSetAccessorTypeAnnotationNode: () => VN, getEffectiveTypeAnnotationNode: () => V0, getEffectiveTypeParameterDeclarations: () => VA, getEffectiveTypeRoots: () => getEffectiveTypeRoots, getElementOrPropertyAccessArgumentExpressionOrName: () => Cf, getElementOrPropertyAccessName: () => Fs, getElementsOfBindingOrAssignmentPattern: () => kE, getEmitDeclarations: () => cv, getEmitFlags: () => xi, getEmitHelpers: () => getEmitHelpers, getEmitModuleDetectionKind: () => wx, getEmitModuleKind: () => Ei, getEmitModuleResolutionKind: () => Ml, getEmitScriptTarget: () => Uf, getEnclosingBlockScopeContainer: () => Zy, getEncodedSemanticClassifications: () => getEncodedSemanticClassifications, getEncodedSyntacticClassifications: () => getEncodedSyntacticClassifications, getEndLinePosition: () => d3, getEntityNameFromTypeNode: () => nI, getEntrypointsFromPackageJsonInfo: () => getEntrypointsFromPackageJsonInfo, getErrorCountForSummary: () => getErrorCountForSummary, getErrorSpanForNode: () => i0, getErrorSummaryText: () => getErrorSummaryText, getEscapedTextOfIdentifierOrLiteral: () => b4, getExpandoInitializer: () => U_, getExportAssignmentExpression: () => p4, getExportInfoMap: () => getExportInfoMap, getExportNeedsImportStarHelper: () => getExportNeedsImportStarHelper, getExpressionAssociativity: () => yN, getExpressionPrecedence: () => vN, getExternalHelpersModuleName: () => EE, getExternalModuleImportEqualsDeclarationExpression: () => _I, getExternalModuleName: () => E0, getExternalModuleNameFromDeclaration: () => IN, getExternalModuleNameFromPath: () => F0, getExternalModuleNameLiteral: () => Xj, getExternalModuleRequireArgument: () => cI, getFallbackOptions: () => getFallbackOptions, getFileEmitOutput: () => getFileEmitOutput, getFileMatcherPatterns: () => Ix, getFileNamesFromConfigSpecs: () => getFileNamesFromConfigSpecs, getFileWatcherEventKind: () => getFileWatcherEventKind, getFilesInErrorForSummary: () => getFilesInErrorForSummary, getFirstConstructorWithBody: () => R4, getFirstIdentifier: () => iO, getFirstNonSpaceCharacterPosition: () => getFirstNonSpaceCharacterPosition, getFirstProjectOutput: () => getFirstProjectOutput, getFixableErrorSpanExpression: () => getFixableErrorSpanExpression, getFormatCodeSettingsForWriting: () => getFormatCodeSettingsForWriting, getFullWidth: () => hf, getFunctionFlags: () => sN, getHeritageClause: () => Pf, getHostSignatureFromJSDoc: () => C0, getIdentifierAutoGenerate: () => getIdentifierAutoGenerate, getIdentifierGeneratedImportReference: () => getIdentifierGeneratedImportReference, getIdentifierTypeArguments: () => getIdentifierTypeArguments, getImmediatelyInvokedFunctionExpression: () => Qk, getImpliedNodeFormatForFile: () => getImpliedNodeFormatForFile, getImpliedNodeFormatForFileWorker: () => getImpliedNodeFormatForFileWorker, getImportNeedsImportDefaultHelper: () => getImportNeedsImportDefaultHelper, getImportNeedsImportStarHelper: () => getImportNeedsImportStarHelper, getIndentSize: () => Oo, getIndentString: () => j0, getInitializedVariables: () => NO, getInitializerOfBinaryExpression: () => X3, getInitializerOfBindingOrAssignmentElement: () => AE, getInterfaceBaseTypeNodes: () => g4, getInternalEmitFlags: () => zD, getInvokedExpression: () => iI, getIsolatedModules: () => zf, getJSDocAugmentsTag: () => ES, getJSDocClassTag: () => NA, getJSDocCommentRanges: () => I3, getJSDocCommentsAndTags: () => r4, getJSDocDeprecatedTag: () => jA, getJSDocDeprecatedTagNoCache: () => IS, getJSDocEnumTag: () => JA, getJSDocHost: () => s4, getJSDocImplementsTags: () => wS, getJSDocOverrideTagNoCache: () => kS, getJSDocParameterTags: () => of2, getJSDocParameterTagsNoCache: () => bS, getJSDocPrivateTag: () => MA, getJSDocPrivateTagNoCache: () => AS, getJSDocProtectedTag: () => LA, getJSDocProtectedTagNoCache: () => PS, getJSDocPublicTag: () => OA, getJSDocPublicTagNoCache: () => CS, getJSDocReadonlyTag: () => RA, getJSDocReadonlyTagNoCache: () => DS, getJSDocReturnTag: () => NS, getJSDocReturnType: () => OS, getJSDocRoot: () => P0, getJSDocSatisfiesExpressionType: () => NL, getJSDocSatisfiesTag: () => wy, getJSDocTags: () => hl, getJSDocTagsNoCache: () => qA, getJSDocTemplateTag: () => BA, getJSDocThisTag: () => FA, getJSDocType: () => cf, getJSDocTypeAliasName: () => w2, getJSDocTypeAssertionType: () => Wj, getJSDocTypeParameterDeclarations: () => F4, getJSDocTypeParameterTags: () => SS, getJSDocTypeParameterTagsNoCache: () => xS, getJSDocTypeTag: () => _f, getJSXImplicitImportBase: () => IM, getJSXRuntimeImport: () => NM, getJSXTransformEnabled: () => kM, getKeyForCompilerOptions: () => getKeyForCompilerOptions, getLanguageVariant: () => sv, getLastChild: () => mx, getLeadingCommentRanges: () => Ao, getLeadingCommentRangesOfNode: () => Ck, getLeftmostAccessExpression: () => rv, getLeftmostExpression: () => ZO, getLineAndCharacterOfPosition: () => Ls, getLineInfo: () => getLineInfo, getLineOfLocalPosition: () => FN, getLineOfLocalPositionFromLineMap: () => ds, getLineStartPositionForPosition: () => getLineStartPositionForPosition, getLineStarts: () => ss, getLinesBetweenPositionAndNextNonWhitespaceCharacter: () => DO, getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter: () => PO, getLinesBetweenPositions: () => I_, getLinesBetweenRangeEndAndRangeStart: () => wO, getLinesBetweenRangeEndPositions: () => CO, getLiteralText: () => WD, getLocalNameForExternalImport: () => Kj, getLocalSymbolForExportDefault: () => cO, getLocaleSpecificMessage: () => Y_, getLocaleTimeString: () => getLocaleTimeString, getMappedContextSpan: () => getMappedContextSpan, getMappedDocumentSpan: () => getMappedDocumentSpan, getMappedLocation: () => getMappedLocation, getMatchedFileSpec: () => getMatchedFileSpec, getMatchedIncludeSpec: () => getMatchedIncludeSpec, getMeaningFromDeclaration: () => getMeaningFromDeclaration, getMeaningFromLocation: () => getMeaningFromLocation, getMembersOfDeclaration: () => Ik, getModeForFileReference: () => getModeForFileReference, getModeForResolutionAtIndex: () => getModeForResolutionAtIndex, getModeForUsageLocation: () => getModeForUsageLocation, getModifiedTime: () => getModifiedTime, getModifiers: () => sf, getModuleInstanceState: () => getModuleInstanceState, getModuleNameStringLiteralAt: () => getModuleNameStringLiteralAt, getModuleSpecifierEndingPreference: () => VM, getModuleSpecifierResolverHost: () => getModuleSpecifierResolverHost, getNameForExportedSymbol: () => getNameForExportedSymbol, getNameFromIndexInfo: () => _k, getNameFromPropertyName: () => getNameFromPropertyName, getNameOfAccessExpression: () => KO, getNameOfCompilerOptionValue: () => getNameOfCompilerOptionValue, getNameOfDeclaration: () => ml, getNameOfExpando: () => xI, getNameOfJSDocTypedef: () => gS, getNameOrArgument: () => $3, getNameTable: () => uB, getNamesForExportedSymbol: () => getNamesForExportedSymbol, getNamespaceDeclarationNode: () => Q3, getNewLineCharacter: () => ox, getNewLineKind: () => getNewLineKind, getNewLineOrDefaultFromHost: () => getNewLineOrDefaultFromHost, getNewTargetContainer: () => Xk, getNextJSDocCommentLocation: () => a4, getNodeForGeneratedName: () => NJ, getNodeId: () => getNodeId, getNodeKind: () => getNodeKind, getNodeModifiers: () => getNodeModifiers, getNodeModulePathParts: () => wL, getNonAssignedNameOfDeclaration: () => Ey, getNonAssignmentOperatorForCompoundAssignment: () => getNonAssignmentOperatorForCompoundAssignment, getNonAugmentationDeclaration: () => E3, getNonDecoratorTokenPosOfNode: () => FD, getNormalizedAbsolutePath: () => as, getNormalizedAbsolutePathWithoutRoot: () => Q5, getNormalizedPathComponents: () => $p, getObjectFlags: () => Bf, getOperator: () => R0, getOperatorAssociativity: () => x4, getOperatorPrecedence: () => E4, getOptionFromName: () => getOptionFromName, getOptionsNameMap: () => getOptionsNameMap, getOrCreateEmitNode: () => getOrCreateEmitNode, getOrCreateExternalHelpersModuleNameIfNeeded: () => wE, getOrUpdate: () => la, getOriginalNode: () => ul, getOriginalNodeId: () => getOriginalNodeId, getOriginalSourceFile: () => gN, getOutputDeclarationFileName: () => getOutputDeclarationFileName, getOutputExtension: () => getOutputExtension, getOutputFileNames: () => getOutputFileNames, getOutputPathsFor: () => getOutputPathsFor, getOutputPathsForBundle: () => getOutputPathsForBundle, getOwnEmitOutputFilePath: () => NN, getOwnKeys: () => ho, getOwnValues: () => go, getPackageJsonInfo: () => getPackageJsonInfo, getPackageJsonTypesVersionsPaths: () => getPackageJsonTypesVersionsPaths, getPackageJsonsVisibleToFile: () => getPackageJsonsVisibleToFile, getPackageNameFromTypesPackageName: () => getPackageNameFromTypesPackageName, getPackageScopeForPath: () => getPackageScopeForPath, getParameterSymbolFromJSDoc: () => JI, getParameterTypeNode: () => CL, getParentNodeInSpan: () => getParentNodeInSpan, getParseTreeNode: () => fl, getParsedCommandLineOfConfigFile: () => getParsedCommandLineOfConfigFile, getPathComponents: () => qi, getPathComponentsRelativeTo: () => ly, getPathFromPathComponents: () => xo, getPathUpdater: () => getPathUpdater, getPathsBasePath: () => LN, getPatternFromSpec: () => BM, getPendingEmitKind: () => getPendingEmitKind, getPositionOfLineAndCharacter: () => lA, getPossibleGenericSignatures: () => getPossibleGenericSignatures, getPossibleOriginalInputExtensionForExtension: () => MN, getPossibleTypeArgumentsInfo: () => getPossibleTypeArgumentsInfo, getPreEmitDiagnostics: () => getPreEmitDiagnostics, getPrecedingNonSpaceCharacterPosition: () => getPrecedingNonSpaceCharacterPosition, getPrivateIdentifier: () => getPrivateIdentifier, getProperties: () => getProperties, getProperty: () => Qc, getPropertyArrayElementValue: () => qk, getPropertyAssignment: () => f0, getPropertyAssignmentAliasLikeExpression: () => ZI, getPropertyNameForPropertyNameNode: () => Df, getPropertyNameForUniqueESSymbol: () => _N, getPropertyNameOfBindingOrAssignmentElement: () => eJ, getPropertySymbolFromBindingElement: () => getPropertySymbolFromBindingElement, getPropertySymbolsFromContextualType: () => x7, getQuoteFromPreference: () => getQuoteFromPreference, getQuotePreference: () => getQuotePreference, getRangesWhere: () => Et, getRefactorContextSpan: () => getRefactorContextSpan, getReferencedFileLocation: () => getReferencedFileLocation, getRegexFromPattern: () => Vf, getRegularExpressionForWildcard: () => Wf, getRegularExpressionsForWildcards: () => pv, getRelativePathFromDirectory: () => JT, getRelativePathFromFile: () => iA, getRelativePathToDirectoryOrUrl: () => uy, getRenameLocation: () => getRenameLocation, getReplacementSpanForContextToken: () => getReplacementSpanForContextToken, getResolutionDiagnostic: () => getResolutionDiagnostic, getResolutionModeOverrideForClause: () => getResolutionModeOverrideForClause, getResolveJsonModule: () => Cx, getResolvePackageJsonExports: () => SM, getResolvePackageJsonImports: () => xM, getResolvedExternalModuleName: () => k4, getResolvedModule: () => hD, getResolvedTypeReferenceDirective: () => vD, getRestIndicatorOfBindingOrAssignmentElement: () => Zj, getRestParameterElementType: () => kk, getRightMostAssignedExpression: () => b0, getRootDeclaration: () => If, getRootLength: () => Bi, getScriptKind: () => getScriptKind, getScriptKindFromFileName: () => Ox, getScriptTargetFeatures: () => getScriptTargetFeatures, getSelectedEffectiveModifierFlags: () => G4, getSelectedSyntacticModifierFlags: () => $4, getSemanticClassifications: () => getSemanticClassifications, getSemanticJsxChildren: () => bN, getSetAccessorTypeAnnotationNode: () => BN, getSetAccessorValueParameter: () => z0, getSetExternalModuleIndicator: () => Ex, getShebang: () => GT, getSingleInitializerOfVariableStatementOrPropertyDeclaration: () => w0, getSingleVariableOfVariableStatement: () => Al, getSnapshotText: () => getSnapshotText, getSnippetElement: () => getSnippetElement, getSourceFileOfModule: () => AD, getSourceFileOfNode: () => Si, getSourceFilePathInNewDir: () => M4, getSourceFilePathInNewDirWorker: () => U0, getSourceFileVersionAsHashFromText: () => getSourceFileVersionAsHashFromText, getSourceFilesToEmit: () => RN, getSourceMapRange: () => getSourceMapRange, getSourceMapper: () => getSourceMapper, getSourceTextOfNodeFromSourceFile: () => No, getSpanOfTokenAtPosition: () => n0, getSpellingSuggestion: () => Ep, getStartPositionOfLine: () => kD, getStartPositionOfRange: () => K_, getStartsOnNewLine: () => getStartsOnNewLine, getStaticPropertiesAndClassStaticBlock: () => getStaticPropertiesAndClassStaticBlock, getStrictOptionValue: () => lv, getStringComparer: () => rl, getSuperCallFromStatement: () => getSuperCallFromStatement, getSuperContainer: () => Yk, getSupportedCodeFixes: () => v7, getSupportedExtensions: () => Mx, getSupportedExtensionsWithJsonIfResolveJsonModule: () => Lx, getSwitchedType: () => getSwitchedType, getSymbolId: () => getSymbolId, getSymbolNameForPrivateIdentifier: () => cN, getSymbolTarget: () => getSymbolTarget, getSyntacticClassifications: () => getSyntacticClassifications, getSyntacticModifierFlags: () => X0, getSyntacticModifierFlagsNoCache: () => Y0, getSynthesizedDeepClone: () => getSynthesizedDeepClone, getSynthesizedDeepCloneWithReplacements: () => getSynthesizedDeepCloneWithReplacements, getSynthesizedDeepClones: () => getSynthesizedDeepClones, getSynthesizedDeepClonesWithReplacements: () => getSynthesizedDeepClonesWithReplacements, getSyntheticLeadingComments: () => getSyntheticLeadingComments, getSyntheticTrailingComments: () => getSyntheticTrailingComments, getTargetLabel: () => getTargetLabel, getTargetOfBindingOrAssignmentElement: () => Ko, getTemporaryModuleResolutionState: () => getTemporaryModuleResolutionState, getTextOfConstantValue: () => HD, getTextOfIdentifierOrLiteral: () => kf, getTextOfJSDocComment: () => zA, getTextOfNode: () => gf, getTextOfNodeFromSourceText: () => B_, getTextOfPropertyName: () => lk, getThisContainer: () => d0, getThisParameter: () => j4, getTokenAtPosition: () => getTokenAtPosition, getTokenPosOfNode: () => Io, getTokenSourceMapRange: () => getTokenSourceMapRange, getTouchingPropertyName: () => getTouchingPropertyName, getTouchingToken: () => getTouchingToken, getTrailingCommentRanges: () => HT, getTrailingSemicolonDeferringWriter: () => kN, getTransformFlagsSubtreeExclusions: () => w8, getTransformers: () => getTransformers, getTsBuildInfoEmitOutputFilePath: () => getTsBuildInfoEmitOutputFilePath, getTsConfigObjectLiteralExpression: () => M3, getTsConfigPropArray: () => L3, getTsConfigPropArrayElementValue: () => Uk, getTypeAnnotationNode: () => UN, getTypeArgumentOrTypeParameterList: () => getTypeArgumentOrTypeParameterList, getTypeKeywordOfTypeOnlyImport: () => getTypeKeywordOfTypeOnlyImport, getTypeNode: () => getTypeNode, getTypeNodeIfAccessible: () => getTypeNodeIfAccessible, getTypeParameterFromJsDoc: () => BI, getTypeParameterOwner: () => AA, getTypesPackageName: () => getTypesPackageName, getUILocale: () => M1, getUniqueName: () => getUniqueName, getUniqueSymbolId: () => getUniqueSymbolId, getUseDefineForClassFields: () => CM, getWatchErrorSummaryDiagnosticMessage: () => getWatchErrorSummaryDiagnosticMessage, getWatchFactory: () => getWatchFactory, group: () => el, groupBy: () => x_, guessIndentation: () => rD, handleNoEmitOptions: () => handleNoEmitOptions, hasAbstractModifier: () => W4, hasAccessorModifier: () => H4, hasAmbientModifier: () => V4, hasChangesInResolutions: () => wD, hasChildOfKind: () => hasChildOfKind, hasContextSensitiveParameters: () => vL, hasDecorators: () => Il, hasDocComment: () => hasDocComment, hasDynamicName: () => v4, hasEffectiveModifier: () => H0, hasEffectiveModifiers: () => XN, hasEffectiveReadonlyModifier: () => $0, hasExtension: () => OT, hasIndexSignature: () => hasIndexSignature, hasInitializer: () => l3, hasInvalidEscape: () => w4, hasJSDocNodes: () => ya, hasJSDocParameterTags: () => IA, hasJSFileExtension: () => dv, hasJsonModuleEmitEnabled: () => hM, hasOnlyExpressionInitializer: () => eD, hasOverrideModifier: () => QN, hasPossibleExternalModuleReference: () => sk, hasProperty: () => Jr, hasPropertyAccessExpressionWithName: () => hasPropertyAccessExpressionWithName, hasQuestionToken: () => OI, hasRecordedExternalHelpers: () => Gj, hasRestParameter: () => nD, hasScopeMarker: () => kP, hasStaticModifier: () => Lf, hasSyntacticModifier: () => rn, hasSyntacticModifiers: () => YN, hasTSFileExtension: () => mv, hasTabstop: () => Qx, hasTrailingDirectorySeparator: () => Hp, hasType: () => ZP, hasTypeArguments: () => qI, hasZeroOrOneAsteriskCharacter: () => OM, helperString: () => helperString, hostGetCanonicalFileName: () => D4, hostUsesCaseSensitiveFileNames: () => J0, idText: () => qr, identifierIsThisKeyword: () => J4, identifierToKeywordKind: () => dS, identity: () => rr, identitySourceMapConsumer: () => identitySourceMapConsumer, ignoreSourceNewlines: () => ignoreSourceNewlines, ignoredPaths: () => ignoredPaths, importDefaultHelper: () => importDefaultHelper, importFromModuleSpecifier: () => II, importNameElisionDisabled: () => gM, importStarHelper: () => importStarHelper, indexOfAnyCharCode: () => Je, indexOfNode: () => UD, indicesOf: () => Wr, inferredTypesContainingFile: () => inferredTypesContainingFile, insertImports: () => insertImports, insertLeadingStatement: () => Mj, insertSorted: () => Qn, insertStatementAfterCustomPrologue: () => RD, insertStatementAfterStandardPrologue: () => LD, insertStatementsAfterCustomPrologue: () => MD, insertStatementsAfterStandardPrologue: () => OD, intersperse: () => Ie, introducesArgumentsExoticObject: () => Lk, inverseJsxOptionMap: () => inverseJsxOptionMap, isAbstractConstructorSymbol: () => zO, isAbstractModifier: () => uR, isAccessExpression: () => Lo, isAccessibilityModifier: () => isAccessibilityModifier, isAccessor: () => pf, isAccessorModifier: () => fR, isAliasSymbolDeclaration: () => QI, isAliasableExpression: () => k0, isAmbientModule: () => yf, isAmbientPropertyDeclaration: () => rk, isAnonymousFunctionDefinition: () => H_, isAnyDirectorySeparator: () => ay, isAnyImportOrBareOrAccessedRequire: () => ik, isAnyImportOrReExport: () => bf, isAnyImportSyntax: () => Qy, isAnySupportedFileExtension: () => ZM, isApplicableVersionedTypesKey: () => isApplicableVersionedTypesKey, isArgumentExpressionOfElementAccess: () => isArgumentExpressionOfElementAccess, isArray: () => ir, isArrayBindingElement: () => gP, isArrayBindingOrAssignmentElement: () => ZS, isArrayBindingOrAssignmentPattern: () => QS, isArrayBindingPattern: () => yR, isArrayLiteralExpression: () => Yl, isArrayLiteralOrObjectLiteralDestructuringPattern: () => isArrayLiteralOrObjectLiteralDestructuringPattern, isArrayTypeNode: () => F8, isArrowFunction: () => sd, isAsExpression: () => CR, isAssertClause: () => $R, isAssertEntry: () => KR, isAssertionExpression: () => PP, isAssertionKey: () => oP, isAssertsKeyword: () => _R, isAssignmentDeclaration: () => v0, isAssignmentExpression: () => ms, isAssignmentOperator: () => G_, isAssignmentPattern: () => KS, isAssignmentTarget: () => UI, isAsteriskToken: () => nR, isAsyncFunction: () => oN, isAsyncModifier: () => Ul, isAutoAccessorPropertyDeclaration: () => $S, isAwaitExpression: () => SR, isAwaitKeyword: () => cR, isBigIntLiteral: () => Uv, isBinaryExpression: () => ur, isBinaryOperatorToken: () => AJ, isBindableObjectDefinePropertyCall: () => S0, isBindableStaticAccessExpression: () => W_, isBindableStaticElementAccessExpression: () => x0, isBindableStaticNameExpression: () => V_, isBindingElement: () => Xl, isBindingElementOfBareOrAccessedRequire: () => mI, isBindingName: () => uP, isBindingOrAssignmentElement: () => yP, isBindingOrAssignmentPattern: () => vP, isBindingPattern: () => df, isBlock: () => Ql, isBlockOrCatchScoped: () => $D, isBlockScope: () => w3, isBlockScopedContainerTopLevel: () => ZD, isBooleanLiteral: () => pP, isBreakOrContinueStatement: () => YA, isBreakStatement: () => JR, isBuildInfoFile: () => isBuildInfoFile, isBuilderProgram: () => isBuilderProgram2, isBundle: () => cj, isBundleFileTextLike: () => XO, isCallChain: () => Cy, isCallExpression: () => sc, isCallExpressionTarget: () => isCallExpressionTarget, isCallLikeExpression: () => SP, isCallOrNewExpression: () => xP, isCallOrNewExpressionTarget: () => isCallOrNewExpressionTarget, isCallSignatureDeclaration: () => Vv, isCallToHelper: () => isCallToHelper, isCaseBlock: () => VR, isCaseClause: () => sj, isCaseKeyword: () => dR, isCaseOrDefaultClause: () => QP, isCatchClause: () => oj, isCatchClauseVariableDeclaration: () => Gx, isCatchClauseVariableDeclarationOrBindingElement: () => T3, isCheckJsEnabledForFile: () => eL, isChildOfNodeWithKind: () => Ak, isCircularBuildOrder: () => isCircularBuildOrder, isClassDeclaration: () => _c6, isClassElement: () => Js, isClassExpression: () => _d4, isClassLike: () => bi, isClassMemberModifier: () => VS, isClassOrTypeElement: () => mP, isClassStaticBlockDeclaration: () => Hl, isCollapsedRange: () => vO, isColonToken: () => iR, isCommaExpression: () => gd, isCommaListExpression: () => oc, isCommaSequence: () => zj, isCommaToken: () => I8, isComment: () => isComment, isCommonJsExportPropertyAssignment: () => p0, isCommonJsExportedExpression: () => Ok, isCompoundAssignment: () => isCompoundAssignment, isComputedNonLiteralName: () => ck, isComputedPropertyName: () => Ws, isConciseBody: () => MP, isConditionalExpression: () => xR, isConditionalTypeNode: () => V8, isConstTypeReference: () => jS, isConstructSignatureDeclaration: () => R8, isConstructorDeclaration: () => nc, isConstructorTypeNode: () => Gv, isContextualKeyword: () => N0, isContinueStatement: () => jR, isCustomPrologue: () => Tf, isDebuggerStatement: () => WR, isDeclaration: () => ko2, isDeclarationBindingElement: () => Fy, isDeclarationFileName: () => QE, isDeclarationName: () => c4, isDeclarationNameOfEnumOrNamespace: () => IO, isDeclarationReadonly: () => Sk, isDeclarationStatement: () => VP, isDeclarationWithTypeParameterChildren: () => C3, isDeclarationWithTypeParameters: () => nk, isDecorator: () => zl, isDecoratorTarget: () => isDecoratorTarget, isDefaultClause: () => oE, isDefaultImport: () => Z3, isDefaultModifier: () => oR, isDefaultedExpandoInitializer: () => SI, isDeleteExpression: () => bR, isDeleteTarget: () => $I, isDeprecatedDeclaration: () => isDeprecatedDeclaration, isDestructuringAssignment: () => nO, isDiagnosticWithLocation: () => isDiagnosticWithLocation, isDiskPathRoot: () => H5, isDoStatement: () => OR, isDotDotDotToken: () => rR, isDottedName: () => ev, isDynamicName: () => M0, isESSymbolIdentifier: () => pN, isEffectiveExternalModule: () => Yy, isEffectiveModuleDeclaration: () => S3, isEffectiveStrictModeSourceFile: () => tk, isElementAccessChain: () => RS, isElementAccessExpression: () => gs, isEmittedFileOfProgram: () => isEmittedFileOfProgram, isEmptyArrayLiteral: () => _O, isEmptyBindingElement: () => pS, isEmptyBindingPattern: () => uS, isEmptyObjectLiteral: () => oO, isEmptyStatement: () => IR, isEmptyStringLiteral: () => j3, isEndOfDeclarationMarker: () => ej, isEntityName: () => lP, isEntityNameExpression: () => Bs, isEnumConst: () => Tk, isEnumDeclaration: () => i2, isEnumMember: () => cE, isEqualityOperatorKind: () => isEqualityOperatorKind, isEqualsGreaterThanToken: () => sR, isExclamationToken: () => rd, isExcludedFile: () => isExcludedFile, isExclusivelyTypeOnlyImportOrExport: () => isExclusivelyTypeOnlyImportOrExport, isExportAssignment: () => Vo, isExportDeclaration: () => cc, isExportModifier: () => N8, isExportName: () => Uj, isExportNamespaceAsDefaultDeclaration: () => b3, isExportOrDefaultModifier: () => DJ, isExportSpecifier: () => aE, isExportsIdentifier: () => H3, isExportsOrModuleExportsOrAlias: () => isExportsOrModuleExportsOrAlias, isExpression: () => mf, isExpressionNode: () => g0, isExpressionOfExternalModuleImportEqualsDeclaration: () => isExpressionOfExternalModuleImportEqualsDeclaration, isExpressionOfOptionalChainRoot: () => $A, isExpressionStatement: () => Zl, isExpressionWithTypeArguments: () => e2, isExpressionWithTypeArgumentsInClassExtendsClause: () => Z0, isExternalModule: () => Qo, isExternalModuleAugmentation: () => Xy, isExternalModuleImportEqualsDeclaration: () => B3, isExternalModuleIndicator: () => NP, isExternalModuleNameRelative: () => gA, isExternalModuleReference: () => ud, isExternalModuleSymbol: () => isExternalModuleSymbol, isExternalOrCommonJsModule: () => bk, isFileLevelUniqueName: () => m3, isFileProbablyExternalModule: () => ou, isFirstDeclarationOfSymbolParameter: () => isFirstDeclarationOfSymbolParameter, isFixablePromiseHandler: () => isFixablePromiseHandler, isForInOrOfStatement: () => OP, isForInStatement: () => LR, isForInitializer: () => RP, isForOfStatement: () => RR, isForStatement: () => eE, isFunctionBlock: () => O3, isFunctionBody: () => LP, isFunctionDeclaration: () => Wo, isFunctionExpression: () => ad, isFunctionExpressionOrArrowFunction: () => SL, isFunctionLike: () => ga, isFunctionLikeDeclaration: () => HS, isFunctionLikeKind: () => My, isFunctionLikeOrClassStaticBlockDeclaration: () => uf, isFunctionOrConstructorTypeNode: () => hP, isFunctionOrModuleBlock: () => fP, isFunctionSymbol: () => DI, isFunctionTypeNode: () => $l, isFutureReservedKeyword: () => tN, isGeneratedIdentifier: () => cs, isGeneratedPrivateIdentifier: () => Ny, isGetAccessor: () => Tl, isGetAccessorDeclaration: () => Gl, isGetOrSetAccessorDeclaration: () => GA, isGlobalDeclaration: () => isGlobalDeclaration, isGlobalScopeAugmentation: () => vf, isGrammarError: () => ND, isHeritageClause: () => ru, isHoistedFunction: () => _0, isHoistedVariableStatement: () => c0, isIdentifier: () => yt, isIdentifierANonContextualKeyword: () => iN, isIdentifierName: () => YI, isIdentifierOrThisTypeNode: () => aJ, isIdentifierPart: () => Rs, isIdentifierStart: () => Wn, isIdentifierText: () => vy, isIdentifierTypePredicate: () => Fk, isIdentifierTypeReference: () => pL, isIfStatement: () => NR, isIgnoredFileFromWildCardWatching: () => isIgnoredFileFromWildCardWatching, isImplicitGlob: () => Dx, isImportCall: () => s0, isImportClause: () => HR, isImportDeclaration: () => o2, isImportEqualsDeclaration: () => s2, isImportKeyword: () => M8, isImportMeta: () => o0, isImportOrExportSpecifier: () => aP, isImportOrExportSpecifierName: () => isImportOrExportSpecifierName, isImportSpecifier: () => nE, isImportTypeAssertionContainer: () => GR, isImportTypeNode: () => Kl, isImportableFile: () => isImportableFile, isInComment: () => isInComment, isInExpressionContext: () => J3, isInJSDoc: () => q3, isInJSFile: () => Pr, isInJSXText: () => isInJSXText, isInJsonFile: () => pI, isInNonReferenceComment: () => isInNonReferenceComment, isInReferenceComment: () => isInReferenceComment, isInRightSideOfInternalImportEqualsDeclaration: () => isInRightSideOfInternalImportEqualsDeclaration, isInString: () => isInString, isInTemplateString: () => isInTemplateString, isInTopLevelContext: () => Kk, isIncrementalCompilation: () => wM, isIndexSignatureDeclaration: () => Hv, isIndexedAccessTypeNode: () => $8, isInferTypeNode: () => H8, isInfinityOrNaNString: () => bL, isInitializedProperty: () => isInitializedProperty, isInitializedVariable: () => lx, isInsideJsxElement: () => isInsideJsxElement, isInsideJsxElementOrAttribute: () => isInsideJsxElementOrAttribute, isInsideNodeModules: () => isInsideNodeModules, isInsideTemplateLiteral: () => isInsideTemplateLiteral, isInstantiatedModule: () => isInstantiatedModule, isInterfaceDeclaration: () => eu, isInternalDeclaration: () => isInternalDeclaration, isInternalModuleImportEqualsDeclaration: () => lI, isInternalName: () => qj, isIntersectionTypeNode: () => W8, isIntrinsicJsxName: () => P4, isIterationStatement: () => n3, isJSDoc: () => Ho, isJSDocAllType: () => dj, isJSDocAugmentsTag: () => md2, isJSDocAuthorTag: () => bj, isJSDocCallbackTag: () => Tj, isJSDocClassTag: () => pE, isJSDocCommentContainingNode: () => c3, isJSDocConstructSignature: () => MI, isJSDocDeprecatedTag: () => v2, isJSDocEnumTag: () => dE, isJSDocFunctionType: () => dd, isJSDocImplementsTag: () => hE, isJSDocIndexSignature: () => dI, isJSDocLikeText: () => LE, isJSDocLink: () => uj, isJSDocLinkCode: () => pj, isJSDocLinkLike: () => Sl, isJSDocLinkPlain: () => fj, isJSDocMemberName: () => uc, isJSDocNameReference: () => fd, isJSDocNamepathType: () => vj, isJSDocNamespaceBody: () => FP, isJSDocNode: () => Uy, isJSDocNonNullableType: () => hj, isJSDocNullableType: () => uE, isJSDocOptionalParameter: () => Zx, isJSDocOptionalType: () => gj, isJSDocOverloadTag: () => y2, isJSDocOverrideTag: () => fE, isJSDocParameterTag: () => pc, isJSDocPrivateTag: () => m2, isJSDocPropertyLikeTag: () => Dy, isJSDocPropertyTag: () => wj, isJSDocProtectedTag: () => h2, isJSDocPublicTag: () => d2, isJSDocReadonlyTag: () => g2, isJSDocReturnTag: () => b2, isJSDocSatisfiesExpression: () => IL, isJSDocSatisfiesTag: () => T2, isJSDocSeeTag: () => Sj, isJSDocSignature: () => iu, isJSDocTag: () => zy, isJSDocTemplateTag: () => Go, isJSDocThisTag: () => mE, isJSDocThrowsTag: () => Cj, isJSDocTypeAlias: () => Cl, isJSDocTypeAssertion: () => xE, isJSDocTypeExpression: () => lE, isJSDocTypeLiteral: () => f2, isJSDocTypeTag: () => au, isJSDocTypedefTag: () => xj, isJSDocUnknownTag: () => Ej, isJSDocUnknownType: () => mj, isJSDocVariadicType: () => yj, isJSXTagName: () => xf, isJsonEqual: () => gv, isJsonSourceFile: () => a0, isJsxAttribute: () => nj, isJsxAttributeLike: () => XP, isJsxAttributes: () => p2, isJsxChild: () => o3, isJsxClosingElement: () => sE, isJsxClosingFragment: () => rj, isJsxElement: () => l2, isJsxExpression: () => aj, isJsxFragment: () => pd, isJsxOpeningElement: () => tu, isJsxOpeningFragment: () => u2, isJsxOpeningLikeElement: () => _32, isJsxOpeningLikeElementTagName: () => isJsxOpeningLikeElementTagName, isJsxSelfClosingElement: () => tj, isJsxSpreadAttribute: () => ij, isJsxTagNameExpression: () => KP, isJsxText: () => td, isJumpStatementTarget: () => isJumpStatementTarget, isKeyword: () => ba, isKnownSymbol: () => lN, isLabelName: () => isLabelName, isLabelOfLabeledStatement: () => isLabelOfLabeledStatement, isLabeledStatement: () => tE, isLateVisibilityPaintedStatement: () => ak, isLeftHandSideExpression: () => Do, isLeftHandSideOfAssignment: () => rO, isLet: () => xk, isLineBreak: () => un, isLiteralComputedPropertyDeclarationName: () => l4, isLiteralExpression: () => Iy, isLiteralExpressionOfObject: () => rP, isLiteralImportTypeNode: () => k3, isLiteralKind: () => ky, isLiteralLikeAccess: () => wf, isLiteralLikeElementAccess: () => wl, isLiteralNameOfPropertyDeclarationOrIndexAccess: () => isLiteralNameOfPropertyDeclarationOrIndexAccess, isLiteralTypeLikeExpression: () => cJ, isLiteralTypeLiteral: () => CP, isLiteralTypeNode: () => Yv, isLocalName: () => E2, isLogicalOperator: () => ZN, isLogicalOrCoalescingAssignmentExpression: () => eO, isLogicalOrCoalescingAssignmentOperator: () => jf, isLogicalOrCoalescingBinaryExpression: () => tO, isLogicalOrCoalescingBinaryOperator: () => Z4, isMappedTypeNode: () => K8, isMemberName: () => js, isMergeDeclarationMarker: () => ZR, isMetaProperty: () => t2, isMethodDeclaration: () => Vl, isMethodOrAccessor: () => Ly, isMethodSignature: () => L8, isMinusToken: () => Wv, isMissingDeclaration: () => YR, isModifier: () => Oy, isModifierKind: () => Wi, isModifierLike: () => ff, isModuleAugmentationExternal: () => x3, isModuleBlock: () => rE, isModuleBody: () => jP, isModuleDeclaration: () => Ea, isModuleExportsAccessExpression: () => T0, isModuleIdentifier: () => G3, isModuleName: () => _J, isModuleOrEnumDeclaration: () => qP, isModuleReference: () => $P, isModuleSpecifierLike: () => isModuleSpecifierLike, isModuleWithStringLiteralName: () => KD, isNameOfFunctionDeclaration: () => isNameOfFunctionDeclaration, isNameOfModuleDeclaration: () => isNameOfModuleDeclaration, isNamedClassElement: () => dP, isNamedDeclaration: () => af, isNamedEvaluation: () => fN, isNamedEvaluationSource: () => S4, isNamedExportBindings: () => QA, isNamedExports: () => iE, isNamedImportBindings: () => BP, isNamedImports: () => XR, isNamedImportsOrExports: () => YO, isNamedTupleMember: () => $v, isNamespaceBody: () => JP, isNamespaceExport: () => ld, isNamespaceExportDeclaration: () => a2, isNamespaceImport: () => _22, isNamespaceReexportDeclaration: () => oI, isNewExpression: () => X8, isNewExpressionTarget: () => isNewExpressionTarget, isNightly: () => PN, isNoSubstitutionTemplateLiteral: () => k8, isNode: () => eP, isNodeArray: () => _s, isNodeArrayMultiLine: () => AO, isNodeDescendantOf: () => KI, isNodeKind: () => gl, isNodeLikeSystem: () => M5, isNodeModulesDirectory: () => aA, isNodeWithPossibleHoistedDeclaration: () => zI, isNonContextualKeyword: () => y4, isNonExportDefaultModifier: () => kJ, isNonGlobalAmbientModule: () => XD, isNonGlobalDeclaration: () => isNonGlobalDeclaration, isNonNullAccess: () => kL, isNonNullChain: () => JS, isNonNullExpression: () => Uo, isNonStaticMethodOrAccessorWithPrivateName: () => isNonStaticMethodOrAccessorWithPrivateName, isNotEmittedOrPartiallyEmittedNode: () => DP, isNotEmittedStatement: () => c2, isNullishCoalesce: () => XA, isNumber: () => gi, isNumericLiteral: () => zs, isNumericLiteralName: () => $x, isObjectBindingElementWithoutPropertyName: () => isObjectBindingElementWithoutPropertyName, isObjectBindingOrAssignmentElement: () => YS, isObjectBindingOrAssignmentPattern: () => XS, isObjectBindingPattern: () => gR, isObjectLiteralElement: () => Wy, isObjectLiteralElementLike: () => jy, isObjectLiteralExpression: () => Hs, isObjectLiteralMethod: () => jk, isObjectLiteralOrClassExpressionMethodOrAccessor: () => Jk, isObjectTypeDeclaration: () => $O, isOctalDigit: () => hy, isOmittedExpression: () => cd, isOptionalChain: () => Ay, isOptionalChainRoot: () => Py, isOptionalDeclaration: () => DL, isOptionalJSDocPropertyLikeTag: () => Yx, isOptionalTypeNode: () => q8, isOuterExpression: () => yd, isOutermostOptionalChain: () => KA, isOverrideModifier: () => pR, isPackedArrayLiteral: () => hL, isParameter: () => Vs, isParameterDeclaration: () => mN, isParameterOrCatchClauseVariable: () => TL, isParameterPropertyDeclaration: () => lS, isParameterPropertyModifier: () => WS, isParenthesizedExpression: () => qo, isParenthesizedTypeNode: () => Kv, isParseTreeNode: () => pl2, isPartOfTypeNode: () => l0, isPartOfTypeQuery: () => F3, isPartiallyEmittedExpression: () => Z8, isPatternMatch: () => z1, isPinnedComment: () => v3, isPlainJsFile: () => PD, isPlusToken: () => zv, isPossiblyTypeArgumentPosition: () => isPossiblyTypeArgumentPosition, isPostfixUnaryExpression: () => Q8, isPrefixUnaryExpression: () => od, isPrivateIdentifier: () => vn, isPrivateIdentifierClassElementDeclaration: () => zS, isPrivateIdentifierPropertyAccessExpression: () => cP, isPrivateIdentifierSymbol: () => uN, isProgramBundleEmitBuildInfo: () => isProgramBundleEmitBuildInfo, isProgramUptoDate: () => isProgramUptoDate, isPrologueDirective: () => us, isPropertyAccessChain: () => LS, isPropertyAccessEntityNameExpression: () => rx, isPropertyAccessExpression: () => bn, isPropertyAccessOrQualifiedName: () => TP, isPropertyAccessOrQualifiedNameOrImportTypeNode: () => bP, isPropertyAssignment: () => lc, isPropertyDeclaration: () => Bo, isPropertyName: () => vl, isPropertyNameLiteral: () => L0, isPropertySignature: () => Wl, isProtoSetter: () => T4, isPrototypeAccess: () => Nl, isPrototypePropertyAssignment: () => CI, isPunctuation: () => isPunctuation, isPushOrUnshiftIdentifier: () => dN, isQualifiedName: () => rc, isQuestionDotToken: () => aR, isQuestionOrExclamationToken: () => iJ, isQuestionOrPlusOrMinusToken: () => oJ, isQuestionToken: () => ql, isRawSourceMap: () => isRawSourceMap, isReadonlyKeyword: () => O8, isReadonlyKeywordOrPlusOrMinusToken: () => sJ, isRecognizedTripleSlashComment: () => jD, isReferenceFileLocation: () => isReferenceFileLocation, isReferencedFile: () => isReferencedFile, isRegularExpressionLiteral: () => QL, isRequireCall: () => El, isRequireVariableStatement: () => W3, isRestParameter: () => u3, isRestTypeNode: () => U8, isReturnStatement: () => FR, isReturnStatementWithFixablePromiseHandler: () => isReturnStatementWithFixablePromiseHandler, isRightSideOfAccessExpression: () => nx, isRightSideOfPropertyAccess: () => isRightSideOfPropertyAccess, isRightSideOfQualifiedName: () => isRightSideOfQualifiedName, isRightSideOfQualifiedNameOrPropertyAccess: () => aO, isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName: () => sO, isRootedDiskPath: () => A_, isSameEntityName: () => z_, isSatisfiesExpression: () => AR, isScopeMarker: () => i3, isSemicolonClassElement: () => kR, isSetAccessor: () => bl, isSetAccessorDeclaration: () => ic, isShebangTrivia: () => gy, isShorthandAmbientModuleSymbol: () => YD, isShorthandPropertyAssignment: () => nu, isSignedNumericLiteral: () => O0, isSimpleCopiableExpression: () => isSimpleCopiableExpression, isSimpleInlineableExpression: () => isSimpleInlineableExpression, isSingleOrDoubleQuote: () => hI, isSourceFile: () => wi, isSourceFileFromLibrary: () => isSourceFileFromLibrary, isSourceFileJS: () => y0, isSourceFileNotJS: () => uI, isSourceFileNotJson: () => fI, isSourceMapping: () => isSourceMapping, isSpecialPropertyDeclaration: () => AI, isSpreadAssignment: () => _E, isSpreadElement: () => Zv, isStatement: () => a3, isStatementButNotDeclaration: () => HP, isStatementOrBlock: () => s3, isStatementWithLocals: () => DD, isStatic: () => G0, isStaticModifier: () => lR, isString: () => Ji, isStringAKeyword: () => nN, isStringANonContextualKeyword: () => rN, isStringAndEmptyAnonymousObjectIntersection: () => isStringAndEmptyAnonymousObjectIntersection, isStringDoubleQuoted: () => gI, isStringLiteral: () => Gn, isStringLiteralLike: () => Ti, isStringLiteralOrJsxExpression: () => YP, isStringLiteralOrTemplate: () => isStringLiteralOrTemplate, isStringOrNumericLiteralLike: () => Ta, isStringOrRegularExpressionOrTemplateLiteral: () => isStringOrRegularExpressionOrTemplateLiteral, isStringTextContainingNode: () => _P, isSuperCall: () => Ek, isSuperKeyword: () => nd, isSuperOrSuperProperty: () => Zk, isSuperProperty: () => Sf, isSupportedSourceFileName: () => GM, isSwitchStatement: () => qR, isSyntaxList: () => Aj, isSyntheticExpression: () => PR, isSyntheticReference: () => QR, isTagName: () => isTagName, isTaggedTemplateExpression: () => Y8, isTaggedTemplateTag: () => isTaggedTemplateTag, isTemplateExpression: () => ER, isTemplateHead: () => ZL, isTemplateLiteral: () => EP, isTemplateLiteralKind: () => yl, isTemplateLiteralToken: () => nP, isTemplateLiteralTypeNode: () => hR, isTemplateLiteralTypeSpan: () => mR, isTemplateMiddle: () => eR, isTemplateMiddleOrTemplateTail: () => iP, isTemplateSpan: () => DR, isTemplateTail: () => tR, isTextWhiteSpaceLike: () => isTextWhiteSpaceLike, isThis: () => isThis, isThisContainerOrFunctionBlock: () => $k, isThisIdentifier: () => Mf, isThisInTypeQuery: () => qN, isThisInitializedDeclaration: () => tI, isThisInitializedObjectBindingExpression: () => rI, isThisProperty: () => eI, isThisTypeNode: () => Xv, isThisTypeParameter: () => Kx, isThisTypePredicate: () => Bk, isThrowStatement: () => UR, isToken: () => tP, isTokenKind: () => BS, isTraceEnabled: () => isTraceEnabled, isTransientSymbol: () => $y, isTrivia: () => aN, isTryStatement: () => zR, isTupleTypeNode: () => B8, isTypeAlias: () => LI, isTypeAliasDeclaration: () => n2, isTypeAssertionExpression: () => vR, isTypeDeclaration: () => Xx, isTypeElement: () => Ry, isTypeKeyword: () => isTypeKeyword, isTypeKeywordToken: () => isTypeKeywordToken, isTypeKeywordTokenOrIdentifier: () => isTypeKeywordTokenOrIdentifier, isTypeLiteralNode: () => id, isTypeNode: () => Jy, isTypeNodeKind: () => hx, isTypeOfExpression: () => TR, isTypeOnlyExportDeclaration: () => US, isTypeOnlyImportDeclaration: () => qS, isTypeOnlyImportOrExportDeclaration: () => sP, isTypeOperatorNode: () => G8, isTypeParameterDeclaration: () => Fo, isTypePredicateNode: () => j8, isTypeQueryNode: () => J8, isTypeReferenceNode: () => ac, isTypeReferenceType: () => tD, isUMDExportSymbol: () => VO, isUnaryExpression: () => t3, isUnaryExpressionWithWrite: () => wP, isUnicodeIdentifierStart: () => UT, isUnionTypeNode: () => z8, isUnparsedNode: () => ZA, isUnparsedPrepend: () => _j, isUnparsedSource: () => lj, isUnparsedTextLike: () => FS, isUrl: () => V5, isValidBigIntString: () => zx, isValidESSymbolDeclaration: () => Mk, isValidTypeOnlyAliasUseSite: () => _L, isValueSignatureDeclaration: () => WI, isVarConst: () => D3, isVariableDeclaration: () => Vi, isVariableDeclarationInVariableStatement: () => N3, isVariableDeclarationInitializedToBareOrAccessedRequire: () => Ef, isVariableDeclarationInitializedToRequire: () => U3, isVariableDeclarationList: () => r2, isVariableLike: () => u0, isVariableLikeOrAccessor: () => Nk, isVariableStatement: () => zo, isVoidExpression: () => Qv, isWatchSet: () => OO, isWhileStatement: () => MR, isWhiteSpaceLike: () => os22, isWhiteSpaceSingleLine: () => N_, isWithStatement: () => BR, isWriteAccess: () => FO, isWriteOnlyAccess: () => JO, isYieldExpression: () => wR, jsxModeNeedsExplicitImport: () => jsxModeNeedsExplicitImport, keywordPart: () => keywordPart, last: () => Zn, lastOrUndefined: () => Cn, length: () => I, libMap: () => libMap, libs: () => libs, lineBreakPart: () => lineBreakPart, linkNamePart: () => linkNamePart, linkPart: () => linkPart, linkTextPart: () => linkTextPart, listFiles: () => listFiles, loadModuleFromGlobalCache: () => loadModuleFromGlobalCache, loadWithModeAwareCache: () => loadWithModeAwareCache, makeIdentifierFromModuleName: () => GD, makeImport: () => makeImport, makeImportIfNecessary: () => makeImportIfNecessary, makeStringLiteral: () => makeStringLiteral, mangleScopedPackageName: () => mangleScopedPackageName, map: () => Ze, mapAllOrFail: () => Pt, mapDefined: () => qt, mapDefinedEntries: () => Ri, mapDefinedIterator: () => Zr, mapEntries: () => be, mapIterator: () => st, mapOneOrMany: () => mapOneOrMany, mapToDisplayParts: () => mapToDisplayParts, matchFiles: () => qM, matchPatternOrExact: () => tL, matchedText: () => S5, matchesExclude: () => matchesExclude, maybeBind: () => le, maybeSetLocalizedDiagnosticMessages: () => vx, memoize: () => tl, memoizeCached: () => D1, memoizeOne: () => An, memoizeWeak: () => P1, metadataHelper: () => metadataHelper, min: () => N1, minAndMax: () => nL, missingFileModifiedTime: () => missingFileModifiedTime, modifierToFlag: () => Q0, modifiersToFlags: () => Vn, moduleOptionDeclaration: () => moduleOptionDeclaration, moduleResolutionIsEqualTo: () => TD, moduleResolutionNameAndModeGetter: () => moduleResolutionNameAndModeGetter, moduleResolutionOptionDeclarations: () => moduleResolutionOptionDeclarations, moduleResolutionSupportsPackageJsonExportsAndImports: () => _v, moduleResolutionUsesNodeModules: () => moduleResolutionUsesNodeModules, moduleSpecifiers: () => ts_moduleSpecifiers_exports, moveEmitHelpers: () => moveEmitHelpers, moveRangeEnd: () => gO, moveRangePastDecorators: () => _x, moveRangePastModifiers: () => yO, moveRangePos: () => Ff, moveSyntheticComments: () => moveSyntheticComments, mutateMap: () => UO, mutateMapSkippingNewValues: () => fx, needsParentheses: () => needsParentheses, needsScopeMarker: () => IP, newCaseClauseTracker: () => newCaseClauseTracker, newPrivateEnvironment: () => newPrivateEnvironment, noEmitNotification: () => noEmitNotification, noEmitSubstitution: () => noEmitSubstitution, noTransformers: () => noTransformers, noTruncationMaximumTruncationLength: () => n8, nodeCanBeDecorated: () => R3, nodeHasName: () => hS, nodeIsDecorated: () => q_, nodeIsMissing: () => va, nodeIsPresent: () => xl, nodeIsSynthesized: () => fs40, nodeModuleNameResolver: () => nodeModuleNameResolver, nodeModulesPathPart: () => nodeModulesPathPart, nodeNextJsonConfigResolver: () => nodeNextJsonConfigResolver, nodeOrChildIsDecorated: () => m0, nodeOverlapsWithStartEnd: () => nodeOverlapsWithStartEnd, nodePosToString: () => ID, nodeSeenTracker: () => nodeSeenTracker, nodeStartsNewLexicalEnvironment: () => hN, nodeToDisplayParts: () => nodeToDisplayParts, noop: () => yn, noopFileWatcher: () => noopFileWatcher, noopPush: () => CT, normalizePath: () => Un, normalizeSlashes: () => Eo, not: () => w5, notImplemented: () => A1, notImplementedResolver: () => notImplementedResolver, nullNodeConverters: () => nullNodeConverters, nullParenthesizerRules: () => Jv, nullTransformationContext: () => nullTransformationContext, objectAllocator: () => lr, operatorPart: () => operatorPart, optionDeclarations: () => optionDeclarations, optionMapToObject: () => optionMapToObject, optionsAffectingProgramStructure: () => optionsAffectingProgramStructure, optionsForBuild: () => optionsForBuild, optionsForWatch: () => optionsForWatch, optionsHaveChanges: () => J_, optionsHaveModuleResolutionChanges: () => p3, or: () => W1, orderedRemoveItem: () => J, orderedRemoveItemAt: () => vT, outFile: () => B0, packageIdToPackageName: () => f3, packageIdToString: () => xD, padLeft: () => D5, padRight: () => k5, paramHelper: () => paramHelper, parameterIsThisKeyword: () => kl, parameterNamePart: () => parameterNamePart, parseBaseNodeFactory: () => I2, parseBigInt: () => oL, parseBuildCommand: () => parseBuildCommand, parseCommandLine: () => parseCommandLine, parseCommandLineWorker: () => parseCommandLineWorker, parseConfigFileTextToJson: () => parseConfigFileTextToJson, parseConfigFileWithSystem: () => parseConfigFileWithSystem, parseConfigHostFromCompilerHostLike: () => parseConfigHostFromCompilerHostLike, parseCustomTypeOption: () => parseCustomTypeOption, parseIsolatedEntityName: () => $J, parseIsolatedJSDocComment: () => XJ, parseJSDocTypeExpressionForTests: () => YJ, parseJsonConfigFileContent: () => parseJsonConfigFileContent, parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent, parseJsonText: () => KJ, parseListTypeOption: () => parseListTypeOption, parseNodeFactory: () => dc, parseNodeModuleFromPath: () => parseNodeModuleFromPath, parsePackageName: () => parsePackageName, parsePseudoBigInt: () => Hf, parseValidBigInt: () => Ux, patchWriteFileEnsuringDirectory: () => patchWriteFileEnsuringDirectory, pathContainsNodeModules: () => pathContainsNodeModules, pathIsAbsolute: () => sy, pathIsBareSpecifier: () => G5, pathIsRelative: () => So, patternText: () => T5, perfLogger: () => Dp, performIncrementalCompilation: () => performIncrementalCompilation, performance: () => ts_performance_exports, plainJSErrors: () => plainJSErrors, positionBelongsToNode: () => positionBelongsToNode, positionIsASICandidate: () => positionIsASICandidate, positionIsSynthesized: () => hs, positionsAreOnSameLine: () => $_, preProcessFile: () => preProcessFile, probablyUsesSemicolons: () => probablyUsesSemicolons, processCommentPragmas: () => ZE, processPragmasIntoFields: () => e7, processTaggedTemplateExpression: () => processTaggedTemplateExpression, programContainsEsModules: () => programContainsEsModules, programContainsModules: () => programContainsModules, projectReferenceIsEqualTo: () => bD, propKeyHelper: () => propKeyHelper, propertyNamePart: () => propertyNamePart, pseudoBigIntToString: () => yv, punctuationPart: () => punctuationPart, pushIfUnique: () => qn, quote: () => quote, quotePreferenceFromString: () => quotePreferenceFromString, rangeContainsPosition: () => rangeContainsPosition, rangeContainsPositionExclusive: () => rangeContainsPositionExclusive, rangeContainsRange: () => rangeContainsRange, rangeContainsRangeExclusive: () => rangeContainsRangeExclusive, rangeContainsStartEnd: () => rangeContainsStartEnd, rangeEndIsOnSameLineAsRangeStart: () => EO, rangeEndPositionsAreOnSameLine: () => xO, rangeEquals: () => Kc, rangeIsOnSingleLine: () => TO, rangeOfNode: () => iL, rangeOfTypeParameters: () => aL, rangeOverlapsWithStartEnd: () => rangeOverlapsWithStartEnd, rangeStartIsOnSameLineAsRangeEnd: () => cx, rangeStartPositionsAreOnSameLine: () => SO, readBuilderProgram: () => readBuilderProgram, readConfigFile: () => readConfigFile, readHelper: () => readHelper, readJson: () => hO, readJsonConfigFile: () => readJsonConfigFile, readJsonOrUndefined: () => ax, realizeDiagnostics: () => realizeDiagnostics, reduceEachLeadingCommentRange: () => zT, reduceEachTrailingCommentRange: () => WT, reduceLeft: () => Qa, reduceLeftIterator: () => K, reducePathComponents: () => is, refactor: () => ts_refactor_exports, regExpEscape: () => JM, relativeComplement: () => h_, removeAllComments: () => removeAllComments, removeEmitHelper: () => removeEmitHelper, removeExtension: () => Fx, removeFileExtension: () => Ll, removeIgnoredPath: () => removeIgnoredPath, removeMinAndVersionNumbers: () => q1, removeOptionality: () => removeOptionality, removePrefix: () => x5, removeSuffix: () => F1, removeTrailingDirectorySeparator: () => P_, repeatString: () => repeatString, replaceElement: () => ei, resolutionExtensionIsTSOrJson: () => YM, resolveConfigFileProjectName: () => resolveConfigFileProjectName, resolveJSModule: () => resolveJSModule, resolveModuleName: () => resolveModuleName, resolveModuleNameFromCache: () => resolveModuleNameFromCache, resolvePackageNameToPackageJson: () => resolvePackageNameToPackageJson, resolvePath: () => oy, resolveProjectReferencePath: () => resolveProjectReferencePath, resolveTripleslashReference: () => resolveTripleslashReference, resolveTypeReferenceDirective: () => resolveTypeReferenceDirective, resolvingEmptyArray: () => t8, restHelper: () => restHelper, returnFalse: () => w_, returnNoopFileWatcher: () => returnNoopFileWatcher, returnTrue: () => vp, returnUndefined: () => C1, returnsPromise: () => returnsPromise, runInitializersHelper: () => runInitializersHelper, sameFlatMap: () => at, sameMap: () => tt, sameMapping: () => sameMapping, scanShebangTrivia: () => yy, scanTokenAtPosition: () => yk, scanner: () => Zo, screenStartingMessageCodes: () => screenStartingMessageCodes, semanticDiagnosticsOptionDeclarations: () => semanticDiagnosticsOptionDeclarations, serializeCompilerOptions: () => serializeCompilerOptions, server: () => ts_server_exports, servicesVersion: () => E7, setCommentRange: () => setCommentRange, setConfigFileInOptions: () => setConfigFileInOptions, setConstantValue: () => setConstantValue, setEachParent: () => Q_, setEmitFlags: () => setEmitFlags, setFunctionNameHelper: () => setFunctionNameHelper, setGetSourceFileAsHashVersioned: () => setGetSourceFileAsHashVersioned, setIdentifierAutoGenerate: () => setIdentifierAutoGenerate, setIdentifierGeneratedImportReference: () => setIdentifierGeneratedImportReference, setIdentifierTypeArguments: () => setIdentifierTypeArguments, setInternalEmitFlags: () => setInternalEmitFlags, setLocalizedDiagnosticMessages: () => yx, setModuleDefaultHelper: () => setModuleDefaultHelper, setNodeFlags: () => dL, setObjectAllocator: () => gx, setOriginalNode: () => Dn, setParent: () => Sa, setParentRecursive: () => Vx, setPrivateIdentifier: () => setPrivateIdentifier, setResolvedModule: () => gD, setResolvedTypeReferenceDirective: () => yD, setSnippetElement: () => setSnippetElement, setSourceMapRange: () => setSourceMapRange, setStackTraceLimit: () => setStackTraceLimit, setStartsOnNewLine: () => setStartsOnNewLine, setSyntheticLeadingComments: () => setSyntheticLeadingComments, setSyntheticTrailingComments: () => setSyntheticTrailingComments, setSys: () => setSys, setSysLog: () => setSysLog, setTextRange: () => Rt, setTextRangeEnd: () => Wx, setTextRangePos: () => Gf, setTextRangePosEnd: () => Us, setTextRangePosWidth: () => $f, setTokenSourceMapRange: () => setTokenSourceMapRange, setTypeNode: () => setTypeNode, setUILocale: () => xp, setValueDeclaration: () => PI, shouldAllowImportingTsExtension: () => shouldAllowImportingTsExtension, shouldPreserveConstEnums: () => EM, shouldUseUriStyleNodeCoreModules: () => shouldUseUriStyleNodeCoreModules, showModuleSpecifier: () => HO, signatureHasLiteralTypes: () => signatureHasLiteralTypes, signatureHasRestParameter: () => signatureHasRestParameter, signatureToDisplayParts: () => signatureToDisplayParts, single: () => Yc, singleElementArray: () => Cp, singleIterator: () => Ka, singleOrMany: () => mo, singleOrUndefined: () => Xa, skipAlias: () => RO, skipAssertions: () => Hj, skipConstraint: () => skipConstraint, skipOuterExpressions: () => $o, skipParentheses: () => Pl, skipPartiallyEmittedExpressions: () => lf, skipTrivia: () => Ar, skipTypeChecking: () => sL, skipTypeParentheses: () => GI, skipWhile: () => N5, sliceAfter: () => rL, some: () => Ke, sort: () => Is, sortAndDeduplicate: () => uo, sortAndDeduplicateDiagnostics: () => yA, sourceFileAffectingCompilerOptions: () => sourceFileAffectingCompilerOptions, sourceFileMayBeEmitted: () => q0, sourceMapCommentRegExp: () => sourceMapCommentRegExp, sourceMapCommentRegExpDontCareLineStart: () => sourceMapCommentRegExpDontCareLineStart, spacePart: () => spacePart, spanMap: () => co, spreadArrayHelper: () => spreadArrayHelper, stableSort: () => Ns, startEndContainsRange: () => startEndContainsRange, startEndOverlapsWithStartEnd: () => startEndOverlapsWithStartEnd, startOnNewLine: () => vd, startTracing: () => startTracing, startsWith: () => Pn, startsWithDirectory: () => rA, startsWithUnderscore: () => startsWithUnderscore, startsWithUseStrict: () => SE, stringContains: () => Fi, stringContainsAt: () => stringContainsAt, stringToToken: () => _l, stripQuotes: () => CN, supportedDeclarationExtensions: () => Rv, supportedJSExtensions: () => Mv, supportedJSExtensionsFlat: () => Lv, supportedLocaleDirectories: () => Hy, supportedTSExtensions: () => Jo, supportedTSExtensionsFlat: () => Ov, supportedTSImplementationExtensions: () => b8, suppressLeadingAndTrailingTrivia: () => suppressLeadingAndTrailingTrivia, suppressLeadingTrivia: () => suppressLeadingTrivia, suppressTrailingTrivia: () => suppressTrailingTrivia, symbolEscapedNameNoDefault: () => symbolEscapedNameNoDefault, symbolName: () => rf, symbolNameNoDefault: () => symbolNameNoDefault, symbolPart: () => symbolPart, symbolToDisplayParts: () => symbolToDisplayParts, syntaxMayBeASICandidate: () => syntaxMayBeASICandidate, syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI, sys: () => iy, sysLog: () => sysLog, tagNamesAreEquivalent: () => Hi, takeWhile: () => I5, targetOptionDeclaration: () => targetOptionDeclaration, templateObjectHelper: () => templateObjectHelper, testFormatSettings: () => testFormatSettings, textChangeRangeIsUnchanged: () => cS, textChangeRangeNewSpan: () => R_, textChanges: () => ts_textChanges_exports, textOrKeywordPart: () => textOrKeywordPart, textPart: () => textPart, textRangeContainsPositionInclusive: () => bA, textSpanContainsPosition: () => vA, textSpanContainsTextSpan: () => TA, textSpanEnd: () => Ir, textSpanIntersection: () => _S, textSpanIntersectsWith: () => EA, textSpanIntersectsWithPosition: () => wA, textSpanIntersectsWithTextSpan: () => xA, textSpanIsEmpty: () => sS, textSpanOverlap: () => oS, textSpanOverlapsWith: () => SA, textSpansEqual: () => textSpansEqual, textToKeywordObj: () => cl, timestamp: () => ts, toArray: () => en2, toBuilderFileEmit: () => toBuilderFileEmit, toBuilderStateFileInfoForMultiEmit: () => toBuilderStateFileInfoForMultiEmit, toEditorSettings: () => lu, toFileNameLowerCase: () => Tp, toLowerCase: () => bp, toPath: () => Ui, toProgramEmitPending: () => toProgramEmitPending, tokenIsIdentifierOrKeyword: () => fr, tokenIsIdentifierOrKeywordOrGreaterThan: () => qT, tokenToString: () => Br, trace: () => trace, tracing: () => rs, tracingEnabled: () => tracingEnabled, transform: () => transform, transformClassFields: () => transformClassFields, transformDeclarations: () => transformDeclarations, transformECMAScriptModule: () => transformECMAScriptModule, transformES2015: () => transformES2015, transformES2016: () => transformES2016, transformES2017: () => transformES2017, transformES2018: () => transformES2018, transformES2019: () => transformES2019, transformES2020: () => transformES2020, transformES2021: () => transformES2021, transformES5: () => transformES5, transformESDecorators: () => transformESDecorators, transformESNext: () => transformESNext, transformGenerators: () => transformGenerators, transformJsx: () => transformJsx, transformLegacyDecorators: () => transformLegacyDecorators, transformModule: () => transformModule, transformNodeModule: () => transformNodeModule, transformNodes: () => transformNodes, transformSystemModule: () => transformSystemModule, transformTypeScript: () => transformTypeScript, transpile: () => transpile, transpileModule: () => transpileModule, transpileOptionValueCompilerOptions: () => transpileOptionValueCompilerOptions, trimString: () => Pp, trimStringEnd: () => X1, trimStringStart: () => nl, tryAddToSet: () => ua, tryAndIgnoreErrors: () => tryAndIgnoreErrors, tryCast: () => ln, tryDirectoryExists: () => tryDirectoryExists, tryExtractTSExtension: () => uO, tryFileExists: () => tryFileExists, tryGetClassExtendingExpressionWithTypeArguments: () => ex, tryGetClassImplementingOrExtendingExpressionWithTypeArguments: () => tx, tryGetDirectories: () => tryGetDirectories, tryGetExtensionFromPath: () => hv, tryGetImportFromModuleSpecifier: () => Y3, tryGetJSDocSatisfiesTypeNode: () => e8, tryGetModuleNameFromFile: () => CE, tryGetModuleSpecifierFromDeclaration: () => kI, tryGetNativePerformanceHooks: () => J5, tryGetPropertyAccessOrIdentifierToString: () => tv, tryGetPropertyNameOfBindingOrAssignmentElement: () => PE, tryGetSourceMappingURL: () => tryGetSourceMappingURL, tryGetTextOfPropertyName: () => e0, tryIOAndConsumeErrors: () => tryIOAndConsumeErrors, tryParsePattern: () => Bx, tryParsePatterns: () => XM, tryParseRawSourceMap: () => tryParseRawSourceMap, tryReadDirectory: () => tryReadDirectory, tryReadFile: () => tryReadFile, tryRemoveDirectoryPrefix: () => jM, tryRemoveExtension: () => Jx, tryRemovePrefix: () => ST, tryRemoveSuffix: () => B1, typeAcquisitionDeclarations: () => typeAcquisitionDeclarations, typeAliasNamePart: () => typeAliasNamePart, typeDirectiveIsEqualTo: () => ED, typeKeywords: () => typeKeywords, typeParameterNamePart: () => typeParameterNamePart, typeReferenceResolutionNameAndModeGetter: () => typeReferenceResolutionNameAndModeGetter, typeToDisplayParts: () => typeToDisplayParts, unchangedPollThresholds: () => unchangedPollThresholds, unchangedTextChangeRange: () => Vy, unescapeLeadingUnderscores: () => dl, unmangleScopedPackageName: () => unmangleScopedPackageName, unorderedRemoveItem: () => bT, unorderedRemoveItemAt: () => U1, unreachableCodeIsError: () => yM, unusedLabelIsError: () => vM, unwrapInnermostStatementOfLabel: () => Rk, updateErrorForNoInputFiles: () => updateErrorForNoInputFiles, updateLanguageServiceSourceFile: () => T7, updateMissingFilePathsWatch: () => updateMissingFilePathsWatch, updatePackageJsonWatch: () => updatePackageJsonWatch, updateResolutionField: () => updateResolutionField, updateSharedExtendedConfigFileWatcher: () => updateSharedExtendedConfigFileWatcher, updateSourceFile: () => k2, updateWatchingWildcardDirectories: () => updateWatchingWildcardDirectories, usesExtensionsOnImports: () => Rx, usingSingleLineStringWriter: () => mD, utf16EncodeAsString: () => by, validateLocaleAndSetLanguage: () => DA, valuesHelper: () => valuesHelper, version: () => C, versionMajorMinor: () => m, visitArray: () => visitArray, visitCommaListElements: () => visitCommaListElements, visitEachChild: () => visitEachChild, visitFunctionBody: () => visitFunctionBody, visitIterationBody: () => visitIterationBody, visitLexicalEnvironment: () => visitLexicalEnvironment, visitNode: () => visitNode, visitNodes: () => visitNodes2, visitParameterList: () => visitParameterList, walkUpBindingElementsAndPatterns: () => fS, walkUpLexicalEnvironments: () => walkUpLexicalEnvironments, walkUpOuterExpressions: () => Vj, walkUpParenthesizedExpressions: () => D0, walkUpParenthesizedTypes: () => VI, walkUpParenthesizedTypesAndGetParentAndChild: () => HI, whitespaceOrMapCommentRegExp: () => whitespaceOrMapCommentRegExp, writeCommentRange: () => $N, writeFile: () => jN, writeFileEnsuringDirectories: () => JN, zipToModeAwareCache: () => zipToModeAwareCache, zipWith: () => ce });
|
|
181511
|
+
y(L7, { ANONYMOUS: () => ANONYMOUS, AccessFlags: () => Cg, AssertionLevel: () => $1, AssignmentDeclarationKind: () => Mg, AssignmentKind: () => Sv, Associativity: () => Ev, BreakpointResolver: () => ts_BreakpointResolver_exports, BuilderFileEmit: () => BuilderFileEmit, BuilderProgramKind: () => BuilderProgramKind, BuilderState: () => BuilderState, BundleFileSectionKind: () => ty, CallHierarchy: () => ts_CallHierarchy_exports, CharacterCodes: () => $g, CheckFlags: () => Tg, CheckMode: () => CheckMode, ClassificationType: () => ClassificationType, ClassificationTypeNames: () => ClassificationTypeNames, CommentDirectiveType: () => ig, Comparison: () => d, CompletionInfoFlags: () => CompletionInfoFlags, CompletionTriggerKind: () => CompletionTriggerKind, Completions: () => ts_Completions_exports, ConfigFileProgramReloadLevel: () => ConfigFileProgramReloadLevel, ContextFlags: () => pg, CoreServicesShimHostAdapter: () => CoreServicesShimHostAdapter, Debug: () => Y, DiagnosticCategory: () => qp, Diagnostics: () => ve, DocumentHighlights: () => DocumentHighlights, ElementFlags: () => wg, EmitFlags: () => Wp, EmitHint: () => Qg, EmitOnly: () => og, EndOfLineState: () => EndOfLineState, EnumKind: () => bg, ExitStatus: () => cg, ExportKind: () => ExportKind, Extension: () => Kg, ExternalEmitHelpers: () => Yg, FileIncludeKind: () => ag, FilePreprocessingDiagnosticsKind: () => sg, FileSystemEntryKind: () => FileSystemEntryKind, FileWatcherEventKind: () => FileWatcherEventKind, FindAllReferences: () => ts_FindAllReferences_exports, FlattenLevel: () => FlattenLevel, FlowFlags: () => il, ForegroundColorEscapeSequences: () => ForegroundColorEscapeSequences, FunctionFlags: () => xv, GeneratedIdentifierFlags: () => rg, GetLiteralTextFlags: () => vv, GoToDefinition: () => ts_GoToDefinition_exports, HighlightSpanKind: () => HighlightSpanKind, ImportKind: () => ImportKind, ImportsNotUsedAsValues: () => Ug, IndentStyle: () => IndentStyle, IndexKind: () => Dg, InferenceFlags: () => Ng, InferencePriority: () => Ig, InlayHintKind: () => InlayHintKind, InlayHints: () => ts_InlayHints_exports, InternalEmitFlags: () => Xg, InternalSymbolName: () => Sg, InvalidatedProjectKind: () => InvalidatedProjectKind, JsDoc: () => ts_JsDoc_exports, JsTyping: () => ts_JsTyping_exports, JsxEmit: () => qg, JsxFlags: () => tg, JsxReferenceKind: () => Ag, LanguageServiceMode: () => LanguageServiceMode, LanguageServiceShimHostAdapter: () => LanguageServiceShimHostAdapter, LanguageVariant: () => Hg, LexicalEnvironmentFlags: () => ey, ListFormat: () => ry, LogLevel: () => Y1, MemberOverrideStatus: () => lg, ModifierFlags: () => Mp, ModuleDetectionKind: () => Rg, ModuleInstanceState: () => ModuleInstanceState, ModuleKind: () => Bg, ModuleResolutionKind: () => Lg, ModuleSpecifierEnding: () => jv, NavigateTo: () => ts_NavigateTo_exports, NavigationBar: () => ts_NavigationBar_exports, NewLineKind: () => zg, NodeBuilderFlags: () => fg, NodeCheckFlags: () => xg, NodeFactoryFlags: () => Fv, NodeFlags: () => Op, NodeResolutionFeatures: () => NodeResolutionFeatures, ObjectFlags: () => Fp, OperationCanceledException: () => Rp, OperatorPrecedence: () => wv, OrganizeImports: () => ts_OrganizeImports_exports, OrganizeImportsMode: () => OrganizeImportsMode, OuterExpressionKinds: () => Zg, OutliningElementsCollector: () => ts_OutliningElementsCollector_exports, OutliningSpanKind: () => OutliningSpanKind, OutputFileType: () => OutputFileType, PackageJsonAutoImportPreference: () => PackageJsonAutoImportPreference, PackageJsonDependencyGroup: () => PackageJsonDependencyGroup, PatternMatchKind: () => PatternMatchKind, PollingInterval: () => PollingInterval, PollingWatchKind: () => Fg, PragmaKindFlags: () => ny, PrivateIdentifierKind: () => PrivateIdentifierKind, ProcessLevel: () => ProcessLevel, QuotePreference: () => QuotePreference, RelationComparisonResult: () => Lp, Rename: () => ts_Rename_exports, ScriptElementKind: () => ScriptElementKind, ScriptElementKindModifier: () => ScriptElementKindModifier, ScriptKind: () => Wg, ScriptSnapshot: () => ScriptSnapshot, ScriptTarget: () => Vg, SemanticClassificationFormat: () => SemanticClassificationFormat, SemanticMeaning: () => SemanticMeaning, SemicolonPreference: () => SemicolonPreference, SignatureCheckMode: () => SignatureCheckMode, SignatureFlags: () => Bp, SignatureHelp: () => ts_SignatureHelp_exports, SignatureKind: () => Pg, SmartSelectionRange: () => ts_SmartSelectionRange_exports, SnippetKind: () => zp, SortKind: () => H1, StructureIsReused: () => _g, SymbolAccessibility: () => hg, SymbolDisplay: () => ts_SymbolDisplay_exports, SymbolDisplayPartKind: () => SymbolDisplayPartKind, SymbolFlags: () => jp, SymbolFormatFlags: () => mg, SyntaxKind: () => Np, SyntheticSymbolKind: () => gg, Ternary: () => Og, ThrottledCancellationToken: () => O7, TokenClass: () => TokenClass, TokenFlags: () => ng, TransformFlags: () => Up, TypeFacts: () => TypeFacts, TypeFlags: () => Jp, TypeFormatFlags: () => dg, TypeMapKind: () => kg, TypePredicateKind: () => yg, TypeReferenceSerializationKind: () => vg, TypeScriptServicesFactory: () => TypeScriptServicesFactory, UnionReduction: () => ug, UpToDateStatusType: () => UpToDateStatusType, VarianceFlags: () => Eg, Version: () => Version, VersionRange: () => VersionRange, WatchDirectoryFlags: () => Gg, WatchDirectoryKind: () => Jg, WatchFileKind: () => jg, WatchLogLevel: () => WatchLogLevel, WatchType: () => WatchType, accessPrivateIdentifier: () => accessPrivateIdentifier, addEmitFlags: () => addEmitFlags, addEmitHelper: () => addEmitHelper, addEmitHelpers: () => addEmitHelpers, addInternalEmitFlags: () => addInternalEmitFlags, addNodeFactoryPatcher: () => jL, addObjectAllocatorPatcher: () => sM, addRange: () => jr, addRelatedInfo: () => Rl, addSyntheticLeadingComment: () => addSyntheticLeadingComment, addSyntheticTrailingComment: () => addSyntheticTrailingComment, addToSeen: () => GO, advancedAsyncSuperHelper: () => advancedAsyncSuperHelper, affectsDeclarationPathOptionDeclarations: () => affectsDeclarationPathOptionDeclarations, affectsEmitOptionDeclarations: () => affectsEmitOptionDeclarations, allKeysStartWithDot: () => allKeysStartWithDot, altDirectorySeparator: () => py, and: () => E5, append: () => tr, appendIfUnique: () => g_, arrayFrom: () => Za, arrayIsEqualTo: () => Hc, arrayIsHomogeneous: () => fL, arrayIsSorted: () => Wc, arrayOf: () => yo, arrayReverseIterator: () => y_, arrayToMap: () => Zc, arrayToMultiMap: () => bo, arrayToNumericMap: () => Os, arraysEqual: () => ke, assertType: () => C5, assign: () => vo, assignHelper: () => assignHelper, asyncDelegator: () => asyncDelegator, asyncGeneratorHelper: () => asyncGeneratorHelper, asyncSuperHelper: () => asyncSuperHelper, asyncValues: () => asyncValues, attachFileToDiagnostics: () => qs, awaitHelper: () => awaitHelper, awaiterHelper: () => awaiterHelper, base64decode: () => mO, base64encode: () => dO, binarySearch: () => Ya, binarySearchKey: () => b_, bindSourceFile: () => bindSourceFile, breakIntoCharacterSpans: () => breakIntoCharacterSpans, breakIntoWordSpans: () => breakIntoWordSpans, buildLinkParts: () => buildLinkParts, buildOpts: () => buildOpts, buildOverload: () => buildOverload, bundlerModuleNameResolver: () => bundlerModuleNameResolver, canBeConvertedToAsync: () => canBeConvertedToAsync, canHaveDecorators: () => ME, canHaveExportModifier: () => AL, canHaveFlowNode: () => jI, canHaveIllegalDecorators: () => rJ, canHaveIllegalModifiers: () => nJ, canHaveIllegalType: () => tJ, canHaveIllegalTypeParameters: () => IE, canHaveJSDoc: () => Af, canHaveLocals: () => zP, canHaveModifiers: () => fc, canHaveSymbol: () => UP, canJsonReportNoInputFiles: () => canJsonReportNoInputFiles, canProduceDiagnostics: () => canProduceDiagnostics, canUsePropertyAccess: () => PL, canWatchDirectoryOrFile: () => canWatchDirectoryOrFile, cartesianProduct: () => P5, cast: () => ti, chainBundle: () => chainBundle, chainDiagnosticMessages: () => lM, changeAnyExtension: () => RT, changeCompilerHostLikeToUseCache: () => changeCompilerHostLikeToUseCache, changeExtension: () => KM, changesAffectModuleResolution: () => cD, changesAffectingProgramStructure: () => lD, childIsDecorated: () => h0, classElementOrClassElementParameterIsDecorated: () => sI, classOrConstructorParameterIsDecorated: () => aI, classPrivateFieldGetHelper: () => classPrivateFieldGetHelper, classPrivateFieldInHelper: () => classPrivateFieldInHelper, classPrivateFieldSetHelper: () => classPrivateFieldSetHelper, classicNameResolver: () => classicNameResolver, classifier: () => ts_classifier_exports, cleanExtendedConfigCache: () => cleanExtendedConfigCache, clear: () => nt, clearMap: () => qO, clearSharedExtendedConfigFileWatcher: () => clearSharedExtendedConfigFileWatcher, climbPastPropertyAccess: () => climbPastPropertyAccess, climbPastPropertyOrElementAccess: () => climbPastPropertyOrElementAccess, clone: () => E_, cloneCompilerOptions: () => cloneCompilerOptions, closeFileWatcher: () => MO, closeFileWatcherOf: () => closeFileWatcherOf, codefix: () => ts_codefix_exports, collapseTextChangeRangesAcrossMultipleVersions: () => CA, collectExternalModuleInfo: () => collectExternalModuleInfo, combine: () => $c, combinePaths: () => tn, commentPragmas: () => Vp, commonOptionsWithBuild: () => commonOptionsWithBuild, commonPackageFolders: () => Pv, compact: () => Gc, compareBooleans: () => j1, compareDataObjects: () => px, compareDiagnostics: () => av, compareDiagnosticsSkipRelatedInformation: () => qf, compareEmitHelpers: () => compareEmitHelpers, compareNumberOfDirectorySeparators: () => $M, comparePaths: () => tA, comparePathsCaseInsensitive: () => eA, comparePathsCaseSensitive: () => Z5, comparePatternKeys: () => comparePatternKeys, compareProperties: () => R1, compareStringsCaseInsensitive: () => C_, compareStringsCaseInsensitiveEslintCompatible: () => O1, compareStringsCaseSensitive: () => ri, compareStringsCaseSensitiveUI: () => L1, compareTextSpans: () => I1, compareValues: () => Vr, compileOnSaveCommandLineOption: () => compileOnSaveCommandLineOption, compilerOptionsAffectDeclarationPath: () => DM, compilerOptionsAffectEmit: () => PM, compilerOptionsAffectSemanticDiagnostics: () => AM, compilerOptionsDidYouMeanDiagnostics: () => compilerOptionsDidYouMeanDiagnostics, compilerOptionsIndicateEsModules: () => compilerOptionsIndicateEsModules, compose: () => k1, computeCommonSourceDirectoryOfFilenames: () => computeCommonSourceDirectoryOfFilenames, computeLineAndCharacterOfPosition: () => my, computeLineOfPosition: () => k_, computeLineStarts: () => Kp, computePositionOfLineAndCharacter: () => dy, computeSignature: () => computeSignature, computeSignatureWithDiagnostics: () => computeSignatureWithDiagnostics, computeSuggestionDiagnostics: () => computeSuggestionDiagnostics, concatenate: () => Ft, concatenateDiagnosticMessageChains: () => uM, consumesNodeCoreModules: () => consumesNodeCoreModules, contains: () => pe, containsIgnoredPath: () => Hx, containsObjectRestOrSpread: () => A2, containsParseError: () => Ky, containsPath: () => jT, convertCompilerOptionsForTelemetry: () => convertCompilerOptionsForTelemetry, convertCompilerOptionsFromJson: () => convertCompilerOptionsFromJson, convertJsonOption: () => convertJsonOption, convertToBase64: () => ix, convertToObject: () => convertToObject, convertToObjectWorker: () => convertToObjectWorker, convertToOptionsWithAbsolutePaths: () => convertToOptionsWithAbsolutePaths, convertToRelativePath: () => nA, convertToTSConfig: () => convertToTSConfig, convertTypeAcquisitionFromJson: () => convertTypeAcquisitionFromJson, copyComments: () => copyComments, copyEntries: () => dD, copyLeadingComments: () => copyLeadingComments, copyProperties: () => H, copyTrailingAsLeadingComments: () => copyTrailingAsLeadingComments, copyTrailingComments: () => copyTrailingComments, couldStartTrivia: () => pA, countWhere: () => Xe, createAbstractBuilder: () => createAbstractBuilder, createAccessorPropertyBackingField: () => LJ, createAccessorPropertyGetRedirector: () => RJ, createAccessorPropertySetRedirector: () => jJ, createBaseNodeFactory: () => S8, createBinaryExpressionTrampoline: () => PJ, createBindingHelper: () => createBindingHelper, createBuildInfo: () => createBuildInfo, createBuilderProgram: () => createBuilderProgram, createBuilderProgramUsingProgramBuildInfo: () => createBuilderProgramUsingProgramBuildInfo, createBuilderStatusReporter: () => createBuilderStatusReporter, createCacheWithRedirects: () => createCacheWithRedirects, createCacheableExportInfoMap: () => createCacheableExportInfoMap, createCachedDirectoryStructureHost: () => createCachedDirectoryStructureHost, createClassifier: () => createClassifier, createCommentDirectivesMap: () => JD, createCompilerDiagnostic: () => Ol, createCompilerDiagnosticForInvalidCustomType: () => createCompilerDiagnosticForInvalidCustomType, createCompilerDiagnosticFromMessageChain: () => cM, createCompilerHost: () => createCompilerHost, createCompilerHostFromProgramHost: () => createCompilerHostFromProgramHost, createCompilerHostWorker: () => createCompilerHostWorker, createDetachedDiagnostic: () => Ro, createDiagnosticCollection: () => TN, createDiagnosticForFileFromMessageChain: () => mk, createDiagnosticForNode: () => uk, createDiagnosticForNodeArray: () => pk, createDiagnosticForNodeArrayFromMessageChain: () => dk, createDiagnosticForNodeFromMessageChain: () => fk, createDiagnosticForNodeInSourceFile: () => P3, createDiagnosticForRange: () => gk, createDiagnosticMessageChainFromDiagnostic: () => hk, createDiagnosticReporter: () => createDiagnosticReporter, createDocumentPositionMapper: () => createDocumentPositionMapper, createDocumentRegistry: () => createDocumentRegistry, createDocumentRegistryInternal: () => createDocumentRegistryInternal, createEmitAndSemanticDiagnosticsBuilderProgram: () => createEmitAndSemanticDiagnosticsBuilderProgram, createEmitHelperFactory: () => createEmitHelperFactory, createEmptyExports: () => Dj, createExpressionForJsxElement: () => Ij, createExpressionForJsxFragment: () => Nj, createExpressionForObjectLiteralElementLike: () => Fj, createExpressionForPropertyName: () => vE, createExpressionFromEntityName: () => yE, createExternalHelpersImportDeclarationIfNeeded: () => $j, createFileDiagnostic: () => iv, createFileDiagnosticFromMessageChain: () => r0, createForOfBindingStatement: () => Oj, createGetCanonicalFileName: () => wp, createGetSourceFile: () => createGetSourceFile, createGetSymbolAccessibilityDiagnosticForNode: () => createGetSymbolAccessibilityDiagnosticForNode, createGetSymbolAccessibilityDiagnosticForNodeName: () => createGetSymbolAccessibilityDiagnosticForNodeName, createGetSymbolWalker: () => createGetSymbolWalker, createIncrementalCompilerHost: () => createIncrementalCompilerHost, createIncrementalProgram: () => createIncrementalProgram, createInputFiles: () => VL, createInputFilesWithFilePaths: () => C8, createInputFilesWithFileTexts: () => A8, createJsxFactoryExpression: () => gE, createLanguageService: () => lB, createLanguageServiceSourceFile: () => N2, createMemberAccessForPropertyName: () => hd, createModeAwareCache: () => createModeAwareCache, createModeAwareCacheKey: () => createModeAwareCacheKey, createModuleResolutionCache: () => createModuleResolutionCache, createModuleResolutionLoader: () => createModuleResolutionLoader, createModuleSpecifierResolutionHost: () => createModuleSpecifierResolutionHost, createMultiMap: () => Be, createNodeConverters: () => x8, createNodeFactory: () => Zf, createOptionNameMap: () => createOptionNameMap, createOverload: () => createOverload, createPackageJsonImportFilter: () => createPackageJsonImportFilter, createPackageJsonInfo: () => createPackageJsonInfo, createParenthesizerRules: () => createParenthesizerRules, createPatternMatcher: () => createPatternMatcher, createPrependNodes: () => createPrependNodes, createPrinter: () => createPrinter, createPrinterWithDefaults: () => createPrinterWithDefaults, createPrinterWithRemoveComments: () => createPrinterWithRemoveComments, createPrinterWithRemoveCommentsNeverAsciiEscape: () => createPrinterWithRemoveCommentsNeverAsciiEscape, createPrinterWithRemoveCommentsOmitTrailingSemicolon: () => createPrinterWithRemoveCommentsOmitTrailingSemicolon, createProgram: () => createProgram, createProgramHost: () => createProgramHost, createPropertyNameNodeForIdentifierOrLiteral: () => EL, createQueue: () => Fr, createRange: () => Jf, createRedirectedBuilderProgram: () => createRedirectedBuilderProgram, createResolutionCache: () => createResolutionCache, createRuntimeTypeSerializer: () => createRuntimeTypeSerializer, createScanner: () => Po, createSemanticDiagnosticsBuilderProgram: () => createSemanticDiagnosticsBuilderProgram, createSet: () => Cr, createSolutionBuilder: () => createSolutionBuilder, createSolutionBuilderHost: () => createSolutionBuilderHost, createSolutionBuilderWithWatch: () => createSolutionBuilderWithWatch, createSolutionBuilderWithWatchHost: () => createSolutionBuilderWithWatchHost, createSortedArray: () => zc, createSourceFile: () => YE, createSourceMapGenerator: () => createSourceMapGenerator, createSourceMapSource: () => HL, createSuperAccessVariableStatement: () => createSuperAccessVariableStatement, createSymbolTable: () => oD, createSymlinkCache: () => MM, createSystemWatchFunctions: () => createSystemWatchFunctions, createTextChange: () => createTextChange, createTextChangeFromStartLength: () => createTextChangeFromStartLength, createTextChangeRange: () => Zp, createTextRangeFromNode: () => createTextRangeFromNode, createTextRangeFromSpan: () => createTextRangeFromSpan, createTextSpan: () => L_, createTextSpanFromBounds: () => ha, createTextSpanFromNode: () => createTextSpanFromNode, createTextSpanFromRange: () => createTextSpanFromRange, createTextSpanFromStringLiteralLikeContent: () => createTextSpanFromStringLiteralLikeContent, createTextWriter: () => DN, createTokenRange: () => bO, createTypeChecker: () => createTypeChecker, createTypeReferenceDirectiveResolutionCache: () => createTypeReferenceDirectiveResolutionCache, createTypeReferenceResolutionLoader: () => createTypeReferenceResolutionLoader, createUnderscoreEscapedMultiMap: () => Ht, createUnparsedSourceFile: () => UL, createWatchCompilerHost: () => createWatchCompilerHost2, createWatchCompilerHostOfConfigFile: () => createWatchCompilerHostOfConfigFile, createWatchCompilerHostOfFilesAndCompilerOptions: () => createWatchCompilerHostOfFilesAndCompilerOptions, createWatchFactory: () => createWatchFactory, createWatchHost: () => createWatchHost, createWatchProgram: () => createWatchProgram, createWatchStatusReporter: () => createWatchStatusReporter, createWriteFileMeasuringIO: () => createWriteFileMeasuringIO, declarationNameToString: () => A3, decodeMappings: () => decodeMappings, decodedTextSpanIntersectsWith: () => Sy, decorateHelper: () => decorateHelper, deduplicate: () => ji, defaultIncludeSpec: () => defaultIncludeSpec, defaultInitCompilerOptions: () => defaultInitCompilerOptions, defaultMaximumTruncationLength: () => r8, detectSortCaseSensitivity: () => Vc, diagnosticCategoryName: () => z5, diagnosticToString: () => diagnosticToString, directoryProbablyExists: () => sx, directorySeparator: () => zn, displayPart: () => displayPart, displayPartsToString: () => cB, disposeEmitNodes: () => disposeEmitNodes, documentSpansEqual: () => documentSpansEqual, dumpTracingLegend: () => dumpTracingLegend, elementAt: () => wT, elideNodes: () => IJ, emitComments: () => U4, emitDetachedComments: () => GN, emitFiles: () => emitFiles, emitFilesAndReportErrors: () => emitFilesAndReportErrors, emitFilesAndReportErrorsAndGetExitStatus: () => emitFilesAndReportErrorsAndGetExitStatus, emitModuleKindIsNonNodeESM: () => mM, emitNewLineBeforeLeadingCommentOfPosition: () => HN, emitNewLineBeforeLeadingComments: () => B4, emitNewLineBeforeLeadingCommentsOfPosition: () => q4, emitSkippedWithNoDiagnostics: () => emitSkippedWithNoDiagnostics, emitUsingBuildInfo: () => emitUsingBuildInfo, emptyArray: () => Bt, emptyFileSystemEntries: () => T8, emptyMap: () => V1, emptyOptions: () => emptyOptions, emptySet: () => ET, endsWith: () => es2, ensurePathIsNonModuleName: () => _y, ensureScriptKind: () => Nx, ensureTrailingDirectorySeparator: () => wo, entityNameToString: () => ls, enumerateInsertsAndDeletes: () => A5, equalOwnProperties: () => S_, equateStringsCaseInsensitive: () => Ms, equateStringsCaseSensitive: () => To, equateValues: () => fa, esDecorateHelper: () => esDecorateHelper, escapeJsxAttributeString: () => A4, escapeLeadingUnderscores: () => vi, escapeNonAsciiString: () => Of, escapeSnippetText: () => xL, escapeString: () => Nf, every: () => me, expandPreOrPostfixIncrementOrDecrementExpression: () => Bj, explainFiles: () => explainFiles, explainIfFileIsRedirectAndImpliedFormat: () => explainIfFileIsRedirectAndImpliedFormat, exportAssignmentIsAlias: () => I0, exportStarHelper: () => exportStarHelper, expressionResultIsUnused: () => gL, extend: () => S, extendsHelper: () => extendsHelper, extensionFromPath: () => QM, extensionIsTS: () => qx, externalHelpersModuleNameText: () => Kf, factory: () => si, fileExtensionIs: () => ns, fileExtensionIsOneOf: () => da, fileIncludeReasonToDiagnostics: () => fileIncludeReasonToDiagnostics, filter: () => ee, filterMutate: () => je, filterSemanticDiagnostics: () => filterSemanticDiagnostics, find: () => Ae, findAncestor: () => zi, findBestPatternMatch: () => TT, findChildOfKind: () => findChildOfKind, findComputedPropertyNameCacheAssignment: () => JJ, findConfigFile: () => findConfigFile, findContainingList: () => findContainingList, findDiagnosticForNode: () => findDiagnosticForNode, findFirstNonJsxWhitespaceToken: () => findFirstNonJsxWhitespaceToken, findIndex: () => he, findLast: () => te, findLastIndex: () => Pe, findListItemInfo: () => findListItemInfo, findMap: () => R, findModifier: () => findModifier, findNextToken: () => findNextToken, findPackageJson: () => findPackageJson, findPackageJsons: () => findPackageJsons, findPrecedingMatchingToken: () => findPrecedingMatchingToken, findPrecedingToken: () => findPrecedingToken, findSuperStatementIndex: () => findSuperStatementIndex, findTokenOnLeftOfPosition: () => findTokenOnLeftOfPosition, findUseStrictPrologue: () => TE, first: () => fo, firstDefined: () => q, firstDefinedIterator: () => W, firstIterator: () => v_, firstOrOnly: () => firstOrOnly, firstOrUndefined: () => pa, firstOrUndefinedIterator: () => Xc, fixupCompilerOptions: () => fixupCompilerOptions, flatMap: () => ne, flatMapIterator: () => Fe, flatMapToMutable: () => ge, flatten: () => ct, flattenCommaList: () => BJ, flattenDestructuringAssignment: () => flattenDestructuringAssignment, flattenDestructuringBinding: () => flattenDestructuringBinding, flattenDiagnosticMessageText: () => flattenDiagnosticMessageText, forEach: () => c, forEachAncestor: () => uD, forEachAncestorDirectory: () => FT, forEachChild: () => xr, forEachChildRecursively: () => D2, forEachEmittedFile: () => forEachEmittedFile, forEachEnclosingBlockScopeContainer: () => ok, forEachEntry: () => pD, forEachExternalModuleToImportFrom: () => forEachExternalModuleToImportFrom, forEachImportClauseDeclaration: () => NI, forEachKey: () => fD, forEachLeadingCommentRange: () => fA, forEachNameInAccessChainWalkingLeft: () => QO, forEachResolvedProjectReference: () => forEachResolvedProjectReference, forEachReturnStatement: () => Pk, forEachRight: () => M, forEachTrailingCommentRange: () => dA, forEachUnique: () => forEachUnique, forEachYieldExpression: () => Dk, forSomeAncestorDirectory: () => WO, formatColorAndReset: () => formatColorAndReset, formatDiagnostic: () => formatDiagnostic, formatDiagnostics: () => formatDiagnostics, formatDiagnosticsWithColorAndContext: () => formatDiagnosticsWithColorAndContext, formatGeneratedName: () => bd, formatGeneratedNamePart: () => C2, formatLocation: () => formatLocation, formatMessage: () => _M, formatStringFromArgs: () => X_, formatting: () => ts_formatting_exports, fullTripleSlashAMDReferencePathRegEx: () => Tv, fullTripleSlashReferencePathRegEx: () => bv, generateDjb2Hash: () => generateDjb2Hash, generateTSConfig: () => generateTSConfig, generatorHelper: () => generatorHelper, getAdjustedReferenceLocation: () => getAdjustedReferenceLocation, getAdjustedRenameLocation: () => getAdjustedRenameLocation, getAliasDeclarationFromName: () => u4, getAllAccessorDeclarations: () => W0, getAllDecoratorsOfClass: () => getAllDecoratorsOfClass, getAllDecoratorsOfClassElement: () => getAllDecoratorsOfClassElement, getAllJSDocTags: () => MS, getAllJSDocTagsOfKind: () => UA, getAllKeys: () => T_, getAllProjectOutputs: () => getAllProjectOutputs, getAllSuperTypeNodes: () => h4, getAllUnscopedEmitHelpers: () => getAllUnscopedEmitHelpers, getAllowJSCompilerOption: () => Ax, getAllowSyntheticDefaultImports: () => TM, getAncestor: () => eN, getAnyExtensionFromPath: () => Gp, getAreDeclarationMapsEnabled: () => bM, getAssignedExpandoInitializer: () => bI, getAssignedName: () => yS, getAssignmentDeclarationKind: () => ps, getAssignmentDeclarationPropertyAccessKind: () => K3, getAssignmentTargetKind: () => o4, getAutomaticTypeDirectiveNames: () => getAutomaticTypeDirectiveNames, getBaseFileName: () => sl, getBinaryOperatorPrecedence: () => Dl, getBuildInfo: () => getBuildInfo, getBuildInfoFileVersionMap: () => getBuildInfoFileVersionMap, getBuildInfoText: () => getBuildInfoText, getBuildOrderFromAnyBuildOrder: () => getBuildOrderFromAnyBuildOrder, getBuilderCreationParameters: () => getBuilderCreationParameters, getBuilderFileEmit: () => getBuilderFileEmit, getCheckFlags: () => ux, getClassExtendsHeritageElement: () => d4, getClassLikeDeclarationOfSymbol: () => dx, getCombinedLocalAndExportSymbolFlags: () => jO, getCombinedModifierFlags: () => ef, getCombinedNodeFlags: () => tf, getCombinedNodeFlagsAlwaysIncludeJSDoc: () => PA, getCommentRange: () => getCommentRange, getCommonSourceDirectory: () => getCommonSourceDirectory, getCommonSourceDirectoryOfConfig: () => getCommonSourceDirectoryOfConfig, getCompilerOptionValue: () => uv, getCompilerOptionsDiffValue: () => getCompilerOptionsDiffValue, getConditions: () => getConditions, getConfigFileParsingDiagnostics: () => getConfigFileParsingDiagnostics, getConstantValue: () => getConstantValue, getContainerNode: () => getContainerNode, getContainingClass: () => Vk, getContainingClassStaticBlock: () => Hk, getContainingFunction: () => zk, getContainingFunctionDeclaration: () => Wk, getContainingFunctionOrClassStaticBlock: () => Gk, getContainingNodeArray: () => yL, getContainingObjectLiteralElement: () => S7, getContextualTypeFromParent: () => getContextualTypeFromParent, getContextualTypeFromParentOrAncestorTypeNode: () => getContextualTypeFromParentOrAncestorTypeNode, getCurrentTime: () => getCurrentTime, getDeclarationDiagnostics: () => getDeclarationDiagnostics, getDeclarationEmitExtensionForPath: () => O4, getDeclarationEmitOutputFilePath: () => ON, getDeclarationEmitOutputFilePathWorker: () => N4, getDeclarationFromName: () => XI, getDeclarationModifierFlagsFromSymbol: () => LO, getDeclarationOfKind: () => aD, getDeclarationsOfKind: () => sD, getDeclaredExpandoInitializer: () => yI, getDecorators: () => kA, getDefaultCompilerOptions: () => y7, getDefaultExportInfoWorker: () => getDefaultExportInfoWorker, getDefaultFormatCodeSettings: () => getDefaultFormatCodeSettings, getDefaultLibFileName: () => aS, getDefaultLibFilePath: () => gB, getDefaultLikeExportInfo: () => getDefaultLikeExportInfo, getDiagnosticText: () => getDiagnosticText, getDiagnosticsWithinSpan: () => getDiagnosticsWithinSpan, getDirectoryPath: () => ma, getDocumentPositionMapper: () => getDocumentPositionMapper, getESModuleInterop: () => ov, getEditsForFileRename: () => getEditsForFileRename, getEffectiveBaseTypeNode: () => f4, getEffectiveConstraintOfTypeParameter: () => HA, getEffectiveContainerForJSDocTemplateTag: () => FI, getEffectiveImplementsTypeNodes: () => m4, getEffectiveInitializer: () => V3, getEffectiveJSDocHost: () => A0, getEffectiveModifierFlags: () => Rf, getEffectiveModifierFlagsAlwaysIncludeJSDoc: () => K4, getEffectiveModifierFlagsNoCache: () => Y4, getEffectiveReturnTypeNode: () => zN, getEffectiveSetAccessorTypeAnnotationNode: () => VN, getEffectiveTypeAnnotationNode: () => V0, getEffectiveTypeParameterDeclarations: () => VA, getEffectiveTypeRoots: () => getEffectiveTypeRoots, getElementOrPropertyAccessArgumentExpressionOrName: () => Cf, getElementOrPropertyAccessName: () => Fs, getElementsOfBindingOrAssignmentPattern: () => kE, getEmitDeclarations: () => cv, getEmitFlags: () => xi, getEmitHelpers: () => getEmitHelpers, getEmitModuleDetectionKind: () => wx, getEmitModuleKind: () => Ei, getEmitModuleResolutionKind: () => Ml, getEmitScriptTarget: () => Uf, getEnclosingBlockScopeContainer: () => Zy, getEncodedSemanticClassifications: () => getEncodedSemanticClassifications, getEncodedSyntacticClassifications: () => getEncodedSyntacticClassifications, getEndLinePosition: () => d3, getEntityNameFromTypeNode: () => nI, getEntrypointsFromPackageJsonInfo: () => getEntrypointsFromPackageJsonInfo, getErrorCountForSummary: () => getErrorCountForSummary, getErrorSpanForNode: () => i0, getErrorSummaryText: () => getErrorSummaryText, getEscapedTextOfIdentifierOrLiteral: () => b4, getExpandoInitializer: () => U_, getExportAssignmentExpression: () => p4, getExportInfoMap: () => getExportInfoMap, getExportNeedsImportStarHelper: () => getExportNeedsImportStarHelper, getExpressionAssociativity: () => yN, getExpressionPrecedence: () => vN, getExternalHelpersModuleName: () => EE, getExternalModuleImportEqualsDeclarationExpression: () => _I, getExternalModuleName: () => E0, getExternalModuleNameFromDeclaration: () => IN, getExternalModuleNameFromPath: () => F0, getExternalModuleNameLiteral: () => Xj, getExternalModuleRequireArgument: () => cI, getFallbackOptions: () => getFallbackOptions, getFileEmitOutput: () => getFileEmitOutput, getFileMatcherPatterns: () => Ix, getFileNamesFromConfigSpecs: () => getFileNamesFromConfigSpecs, getFileWatcherEventKind: () => getFileWatcherEventKind, getFilesInErrorForSummary: () => getFilesInErrorForSummary, getFirstConstructorWithBody: () => R4, getFirstIdentifier: () => iO, getFirstNonSpaceCharacterPosition: () => getFirstNonSpaceCharacterPosition, getFirstProjectOutput: () => getFirstProjectOutput, getFixableErrorSpanExpression: () => getFixableErrorSpanExpression, getFormatCodeSettingsForWriting: () => getFormatCodeSettingsForWriting, getFullWidth: () => hf, getFunctionFlags: () => sN, getHeritageClause: () => Pf, getHostSignatureFromJSDoc: () => C0, getIdentifierAutoGenerate: () => getIdentifierAutoGenerate, getIdentifierGeneratedImportReference: () => getIdentifierGeneratedImportReference, getIdentifierTypeArguments: () => getIdentifierTypeArguments, getImmediatelyInvokedFunctionExpression: () => Qk, getImpliedNodeFormatForFile: () => getImpliedNodeFormatForFile, getImpliedNodeFormatForFileWorker: () => getImpliedNodeFormatForFileWorker, getImportNeedsImportDefaultHelper: () => getImportNeedsImportDefaultHelper, getImportNeedsImportStarHelper: () => getImportNeedsImportStarHelper, getIndentSize: () => Oo, getIndentString: () => j0, getInitializedVariables: () => NO, getInitializerOfBinaryExpression: () => X3, getInitializerOfBindingOrAssignmentElement: () => AE, getInterfaceBaseTypeNodes: () => g4, getInternalEmitFlags: () => zD, getInvokedExpression: () => iI, getIsolatedModules: () => zf, getJSDocAugmentsTag: () => ES, getJSDocClassTag: () => NA, getJSDocCommentRanges: () => I3, getJSDocCommentsAndTags: () => r4, getJSDocDeprecatedTag: () => jA, getJSDocDeprecatedTagNoCache: () => IS, getJSDocEnumTag: () => JA, getJSDocHost: () => s4, getJSDocImplementsTags: () => wS, getJSDocOverrideTagNoCache: () => kS, getJSDocParameterTags: () => of2, getJSDocParameterTagsNoCache: () => bS, getJSDocPrivateTag: () => MA, getJSDocPrivateTagNoCache: () => AS, getJSDocProtectedTag: () => LA, getJSDocProtectedTagNoCache: () => PS, getJSDocPublicTag: () => OA, getJSDocPublicTagNoCache: () => CS, getJSDocReadonlyTag: () => RA, getJSDocReadonlyTagNoCache: () => DS, getJSDocReturnTag: () => NS, getJSDocReturnType: () => OS, getJSDocRoot: () => P0, getJSDocSatisfiesExpressionType: () => NL, getJSDocSatisfiesTag: () => wy, getJSDocTags: () => hl, getJSDocTagsNoCache: () => qA, getJSDocTemplateTag: () => BA, getJSDocThisTag: () => FA, getJSDocType: () => cf, getJSDocTypeAliasName: () => w2, getJSDocTypeAssertionType: () => Wj, getJSDocTypeParameterDeclarations: () => F4, getJSDocTypeParameterTags: () => SS, getJSDocTypeParameterTagsNoCache: () => xS, getJSDocTypeTag: () => _f, getJSXImplicitImportBase: () => IM, getJSXRuntimeImport: () => NM, getJSXTransformEnabled: () => kM, getKeyForCompilerOptions: () => getKeyForCompilerOptions, getLanguageVariant: () => sv, getLastChild: () => mx, getLeadingCommentRanges: () => Ao, getLeadingCommentRangesOfNode: () => Ck, getLeftmostAccessExpression: () => rv, getLeftmostExpression: () => ZO, getLineAndCharacterOfPosition: () => Ls, getLineInfo: () => getLineInfo, getLineOfLocalPosition: () => FN, getLineOfLocalPositionFromLineMap: () => ds, getLineStartPositionForPosition: () => getLineStartPositionForPosition, getLineStarts: () => ss, getLinesBetweenPositionAndNextNonWhitespaceCharacter: () => DO, getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter: () => PO, getLinesBetweenPositions: () => I_, getLinesBetweenRangeEndAndRangeStart: () => wO, getLinesBetweenRangeEndPositions: () => CO, getLiteralText: () => WD, getLocalNameForExternalImport: () => Kj, getLocalSymbolForExportDefault: () => cO, getLocaleSpecificMessage: () => Y_, getLocaleTimeString: () => getLocaleTimeString, getMappedContextSpan: () => getMappedContextSpan, getMappedDocumentSpan: () => getMappedDocumentSpan, getMappedLocation: () => getMappedLocation, getMatchedFileSpec: () => getMatchedFileSpec, getMatchedIncludeSpec: () => getMatchedIncludeSpec, getMeaningFromDeclaration: () => getMeaningFromDeclaration, getMeaningFromLocation: () => getMeaningFromLocation, getMembersOfDeclaration: () => Ik, getModeForFileReference: () => getModeForFileReference, getModeForResolutionAtIndex: () => getModeForResolutionAtIndex, getModeForUsageLocation: () => getModeForUsageLocation, getModifiedTime: () => getModifiedTime, getModifiers: () => sf, getModuleInstanceState: () => getModuleInstanceState, getModuleNameStringLiteralAt: () => getModuleNameStringLiteralAt, getModuleSpecifierEndingPreference: () => VM, getModuleSpecifierResolverHost: () => getModuleSpecifierResolverHost, getNameForExportedSymbol: () => getNameForExportedSymbol, getNameFromIndexInfo: () => _k, getNameFromPropertyName: () => getNameFromPropertyName, getNameOfAccessExpression: () => KO, getNameOfCompilerOptionValue: () => getNameOfCompilerOptionValue, getNameOfDeclaration: () => ml, getNameOfExpando: () => xI, getNameOfJSDocTypedef: () => gS, getNameOrArgument: () => $3, getNameTable: () => uB, getNamesForExportedSymbol: () => getNamesForExportedSymbol, getNamespaceDeclarationNode: () => Q3, getNewLineCharacter: () => ox, getNewLineKind: () => getNewLineKind, getNewLineOrDefaultFromHost: () => getNewLineOrDefaultFromHost, getNewTargetContainer: () => Xk, getNextJSDocCommentLocation: () => a4, getNodeForGeneratedName: () => NJ, getNodeId: () => getNodeId, getNodeKind: () => getNodeKind, getNodeModifiers: () => getNodeModifiers, getNodeModulePathParts: () => wL, getNonAssignedNameOfDeclaration: () => Ey, getNonAssignmentOperatorForCompoundAssignment: () => getNonAssignmentOperatorForCompoundAssignment, getNonAugmentationDeclaration: () => E3, getNonDecoratorTokenPosOfNode: () => FD, getNormalizedAbsolutePath: () => as, getNormalizedAbsolutePathWithoutRoot: () => Q5, getNormalizedPathComponents: () => $p, getObjectFlags: () => Bf, getOperator: () => R0, getOperatorAssociativity: () => x4, getOperatorPrecedence: () => E4, getOptionFromName: () => getOptionFromName, getOptionsNameMap: () => getOptionsNameMap, getOrCreateEmitNode: () => getOrCreateEmitNode, getOrCreateExternalHelpersModuleNameIfNeeded: () => wE, getOrUpdate: () => la, getOriginalNode: () => ul, getOriginalNodeId: () => getOriginalNodeId, getOriginalSourceFile: () => gN, getOutputDeclarationFileName: () => getOutputDeclarationFileName, getOutputExtension: () => getOutputExtension, getOutputFileNames: () => getOutputFileNames, getOutputPathsFor: () => getOutputPathsFor, getOutputPathsForBundle: () => getOutputPathsForBundle, getOwnEmitOutputFilePath: () => NN, getOwnKeys: () => ho, getOwnValues: () => go, getPackageJsonInfo: () => getPackageJsonInfo, getPackageJsonTypesVersionsPaths: () => getPackageJsonTypesVersionsPaths, getPackageJsonsVisibleToFile: () => getPackageJsonsVisibleToFile, getPackageNameFromTypesPackageName: () => getPackageNameFromTypesPackageName, getPackageScopeForPath: () => getPackageScopeForPath, getParameterSymbolFromJSDoc: () => JI, getParameterTypeNode: () => CL, getParentNodeInSpan: () => getParentNodeInSpan, getParseTreeNode: () => fl, getParsedCommandLineOfConfigFile: () => getParsedCommandLineOfConfigFile, getPathComponents: () => qi, getPathComponentsRelativeTo: () => ly, getPathFromPathComponents: () => xo, getPathUpdater: () => getPathUpdater, getPathsBasePath: () => LN, getPatternFromSpec: () => BM, getPendingEmitKind: () => getPendingEmitKind, getPositionOfLineAndCharacter: () => lA, getPossibleGenericSignatures: () => getPossibleGenericSignatures, getPossibleOriginalInputExtensionForExtension: () => MN, getPossibleTypeArgumentsInfo: () => getPossibleTypeArgumentsInfo, getPreEmitDiagnostics: () => getPreEmitDiagnostics, getPrecedingNonSpaceCharacterPosition: () => getPrecedingNonSpaceCharacterPosition, getPrivateIdentifier: () => getPrivateIdentifier, getProperties: () => getProperties, getProperty: () => Qc, getPropertyArrayElementValue: () => qk, getPropertyAssignment: () => f0, getPropertyAssignmentAliasLikeExpression: () => ZI, getPropertyNameForPropertyNameNode: () => Df, getPropertyNameForUniqueESSymbol: () => _N, getPropertyNameOfBindingOrAssignmentElement: () => eJ, getPropertySymbolFromBindingElement: () => getPropertySymbolFromBindingElement, getPropertySymbolsFromContextualType: () => x7, getQuoteFromPreference: () => getQuoteFromPreference, getQuotePreference: () => getQuotePreference, getRangesWhere: () => Et, getRefactorContextSpan: () => getRefactorContextSpan, getReferencedFileLocation: () => getReferencedFileLocation, getRegexFromPattern: () => Vf, getRegularExpressionForWildcard: () => Wf, getRegularExpressionsForWildcards: () => pv, getRelativePathFromDirectory: () => JT, getRelativePathFromFile: () => iA, getRelativePathToDirectoryOrUrl: () => uy, getRenameLocation: () => getRenameLocation, getReplacementSpanForContextToken: () => getReplacementSpanForContextToken, getResolutionDiagnostic: () => getResolutionDiagnostic, getResolutionModeOverrideForClause: () => getResolutionModeOverrideForClause, getResolveJsonModule: () => Cx, getResolvePackageJsonExports: () => SM, getResolvePackageJsonImports: () => xM, getResolvedExternalModuleName: () => k4, getResolvedModule: () => hD, getResolvedTypeReferenceDirective: () => vD, getRestIndicatorOfBindingOrAssignmentElement: () => Zj, getRestParameterElementType: () => kk, getRightMostAssignedExpression: () => b0, getRootDeclaration: () => If, getRootLength: () => Bi, getScriptKind: () => getScriptKind, getScriptKindFromFileName: () => Ox, getScriptTargetFeatures: () => getScriptTargetFeatures, getSelectedEffectiveModifierFlags: () => G4, getSelectedSyntacticModifierFlags: () => $4, getSemanticClassifications: () => getSemanticClassifications, getSemanticJsxChildren: () => bN, getSetAccessorTypeAnnotationNode: () => BN, getSetAccessorValueParameter: () => z0, getSetExternalModuleIndicator: () => Ex, getShebang: () => GT, getSingleInitializerOfVariableStatementOrPropertyDeclaration: () => w0, getSingleVariableOfVariableStatement: () => Al, getSnapshotText: () => getSnapshotText, getSnippetElement: () => getSnippetElement, getSourceFileOfModule: () => AD, getSourceFileOfNode: () => Si, getSourceFilePathInNewDir: () => M4, getSourceFilePathInNewDirWorker: () => U0, getSourceFileVersionAsHashFromText: () => getSourceFileVersionAsHashFromText, getSourceFilesToEmit: () => RN, getSourceMapRange: () => getSourceMapRange, getSourceMapper: () => getSourceMapper, getSourceTextOfNodeFromSourceFile: () => No, getSpanOfTokenAtPosition: () => n0, getSpellingSuggestion: () => Ep, getStartPositionOfLine: () => kD, getStartPositionOfRange: () => K_, getStartsOnNewLine: () => getStartsOnNewLine, getStaticPropertiesAndClassStaticBlock: () => getStaticPropertiesAndClassStaticBlock, getStrictOptionValue: () => lv, getStringComparer: () => rl, getSuperCallFromStatement: () => getSuperCallFromStatement, getSuperContainer: () => Yk, getSupportedCodeFixes: () => v7, getSupportedExtensions: () => Mx, getSupportedExtensionsWithJsonIfResolveJsonModule: () => Lx, getSwitchedType: () => getSwitchedType, getSymbolId: () => getSymbolId, getSymbolNameForPrivateIdentifier: () => cN, getSymbolTarget: () => getSymbolTarget, getSyntacticClassifications: () => getSyntacticClassifications, getSyntacticModifierFlags: () => X0, getSyntacticModifierFlagsNoCache: () => Y0, getSynthesizedDeepClone: () => getSynthesizedDeepClone, getSynthesizedDeepCloneWithReplacements: () => getSynthesizedDeepCloneWithReplacements, getSynthesizedDeepClones: () => getSynthesizedDeepClones, getSynthesizedDeepClonesWithReplacements: () => getSynthesizedDeepClonesWithReplacements, getSyntheticLeadingComments: () => getSyntheticLeadingComments, getSyntheticTrailingComments: () => getSyntheticTrailingComments, getTargetLabel: () => getTargetLabel, getTargetOfBindingOrAssignmentElement: () => Ko, getTemporaryModuleResolutionState: () => getTemporaryModuleResolutionState, getTextOfConstantValue: () => HD, getTextOfIdentifierOrLiteral: () => kf, getTextOfJSDocComment: () => zA, getTextOfNode: () => gf, getTextOfNodeFromSourceText: () => B_, getTextOfPropertyName: () => lk, getThisContainer: () => d0, getThisParameter: () => j4, getTokenAtPosition: () => getTokenAtPosition, getTokenPosOfNode: () => Io, getTokenSourceMapRange: () => getTokenSourceMapRange, getTouchingPropertyName: () => getTouchingPropertyName, getTouchingToken: () => getTouchingToken, getTrailingCommentRanges: () => HT, getTrailingSemicolonDeferringWriter: () => kN, getTransformFlagsSubtreeExclusions: () => w8, getTransformers: () => getTransformers, getTsBuildInfoEmitOutputFilePath: () => getTsBuildInfoEmitOutputFilePath, getTsConfigObjectLiteralExpression: () => M3, getTsConfigPropArray: () => L3, getTsConfigPropArrayElementValue: () => Uk, getTypeAnnotationNode: () => UN, getTypeArgumentOrTypeParameterList: () => getTypeArgumentOrTypeParameterList, getTypeKeywordOfTypeOnlyImport: () => getTypeKeywordOfTypeOnlyImport, getTypeNode: () => getTypeNode, getTypeNodeIfAccessible: () => getTypeNodeIfAccessible, getTypeParameterFromJsDoc: () => BI, getTypeParameterOwner: () => AA, getTypesPackageName: () => getTypesPackageName, getUILocale: () => M1, getUniqueName: () => getUniqueName, getUniqueSymbolId: () => getUniqueSymbolId, getUseDefineForClassFields: () => CM, getWatchErrorSummaryDiagnosticMessage: () => getWatchErrorSummaryDiagnosticMessage, getWatchFactory: () => getWatchFactory, group: () => el, groupBy: () => x_, guessIndentation: () => rD, handleNoEmitOptions: () => handleNoEmitOptions, hasAbstractModifier: () => W4, hasAccessorModifier: () => H4, hasAmbientModifier: () => V4, hasChangesInResolutions: () => wD, hasChildOfKind: () => hasChildOfKind, hasContextSensitiveParameters: () => vL, hasDecorators: () => Il, hasDocComment: () => hasDocComment, hasDynamicName: () => v4, hasEffectiveModifier: () => H0, hasEffectiveModifiers: () => XN, hasEffectiveReadonlyModifier: () => $0, hasExtension: () => OT, hasIndexSignature: () => hasIndexSignature, hasInitializer: () => l3, hasInvalidEscape: () => w4, hasJSDocNodes: () => ya, hasJSDocParameterTags: () => IA, hasJSFileExtension: () => dv, hasJsonModuleEmitEnabled: () => hM, hasOnlyExpressionInitializer: () => eD, hasOverrideModifier: () => QN, hasPossibleExternalModuleReference: () => sk, hasProperty: () => Jr, hasPropertyAccessExpressionWithName: () => hasPropertyAccessExpressionWithName, hasQuestionToken: () => OI, hasRecordedExternalHelpers: () => Gj, hasRestParameter: () => nD, hasScopeMarker: () => kP, hasStaticModifier: () => Lf, hasSyntacticModifier: () => rn, hasSyntacticModifiers: () => YN, hasTSFileExtension: () => mv, hasTabstop: () => Qx, hasTrailingDirectorySeparator: () => Hp, hasType: () => ZP, hasTypeArguments: () => qI, hasZeroOrOneAsteriskCharacter: () => OM, helperString: () => helperString, hostGetCanonicalFileName: () => D4, hostUsesCaseSensitiveFileNames: () => J0, idText: () => qr, identifierIsThisKeyword: () => J4, identifierToKeywordKind: () => dS, identity: () => rr, identitySourceMapConsumer: () => identitySourceMapConsumer, ignoreSourceNewlines: () => ignoreSourceNewlines, ignoredPaths: () => ignoredPaths, importDefaultHelper: () => importDefaultHelper, importFromModuleSpecifier: () => II, importNameElisionDisabled: () => gM, importStarHelper: () => importStarHelper, indexOfAnyCharCode: () => Je, indexOfNode: () => UD, indicesOf: () => Wr, inferredTypesContainingFile: () => inferredTypesContainingFile, insertImports: () => insertImports, insertLeadingStatement: () => Mj, insertSorted: () => Qn, insertStatementAfterCustomPrologue: () => RD, insertStatementAfterStandardPrologue: () => LD, insertStatementsAfterCustomPrologue: () => MD, insertStatementsAfterStandardPrologue: () => OD, intersperse: () => Ie, introducesArgumentsExoticObject: () => Lk, inverseJsxOptionMap: () => inverseJsxOptionMap, isAbstractConstructorSymbol: () => zO, isAbstractModifier: () => uR, isAccessExpression: () => Lo, isAccessibilityModifier: () => isAccessibilityModifier, isAccessor: () => pf, isAccessorModifier: () => fR, isAliasSymbolDeclaration: () => QI, isAliasableExpression: () => k0, isAmbientModule: () => yf, isAmbientPropertyDeclaration: () => rk, isAnonymousFunctionDefinition: () => H_, isAnyDirectorySeparator: () => ay, isAnyImportOrBareOrAccessedRequire: () => ik, isAnyImportOrReExport: () => bf, isAnyImportSyntax: () => Qy, isAnySupportedFileExtension: () => ZM, isApplicableVersionedTypesKey: () => isApplicableVersionedTypesKey, isArgumentExpressionOfElementAccess: () => isArgumentExpressionOfElementAccess, isArray: () => ir, isArrayBindingElement: () => gP, isArrayBindingOrAssignmentElement: () => ZS, isArrayBindingOrAssignmentPattern: () => QS, isArrayBindingPattern: () => yR, isArrayLiteralExpression: () => Yl, isArrayLiteralOrObjectLiteralDestructuringPattern: () => isArrayLiteralOrObjectLiteralDestructuringPattern, isArrayTypeNode: () => F8, isArrowFunction: () => sd, isAsExpression: () => CR, isAssertClause: () => $R, isAssertEntry: () => KR, isAssertionExpression: () => PP, isAssertionKey: () => oP, isAssertsKeyword: () => _R, isAssignmentDeclaration: () => v0, isAssignmentExpression: () => ms, isAssignmentOperator: () => G_, isAssignmentPattern: () => KS, isAssignmentTarget: () => UI, isAsteriskToken: () => nR, isAsyncFunction: () => oN, isAsyncModifier: () => Ul, isAutoAccessorPropertyDeclaration: () => $S, isAwaitExpression: () => SR, isAwaitKeyword: () => cR, isBigIntLiteral: () => Uv, isBinaryExpression: () => ur, isBinaryOperatorToken: () => AJ, isBindableObjectDefinePropertyCall: () => S0, isBindableStaticAccessExpression: () => W_, isBindableStaticElementAccessExpression: () => x0, isBindableStaticNameExpression: () => V_, isBindingElement: () => Xl, isBindingElementOfBareOrAccessedRequire: () => mI, isBindingName: () => uP, isBindingOrAssignmentElement: () => yP, isBindingOrAssignmentPattern: () => vP, isBindingPattern: () => df, isBlock: () => Ql, isBlockOrCatchScoped: () => $D, isBlockScope: () => w3, isBlockScopedContainerTopLevel: () => ZD, isBooleanLiteral: () => pP, isBreakOrContinueStatement: () => YA, isBreakStatement: () => JR, isBuildInfoFile: () => isBuildInfoFile, isBuilderProgram: () => isBuilderProgram2, isBundle: () => cj, isBundleFileTextLike: () => XO, isCallChain: () => Cy, isCallExpression: () => sc, isCallExpressionTarget: () => isCallExpressionTarget, isCallLikeExpression: () => SP, isCallOrNewExpression: () => xP, isCallOrNewExpressionTarget: () => isCallOrNewExpressionTarget, isCallSignatureDeclaration: () => Vv, isCallToHelper: () => isCallToHelper, isCaseBlock: () => VR, isCaseClause: () => sj, isCaseKeyword: () => dR, isCaseOrDefaultClause: () => QP, isCatchClause: () => oj, isCatchClauseVariableDeclaration: () => Gx, isCatchClauseVariableDeclarationOrBindingElement: () => T3, isCheckJsEnabledForFile: () => eL, isChildOfNodeWithKind: () => Ak, isCircularBuildOrder: () => isCircularBuildOrder, isClassDeclaration: () => _c6, isClassElement: () => Js, isClassExpression: () => _d4, isClassLike: () => bi, isClassMemberModifier: () => VS, isClassOrTypeElement: () => mP, isClassStaticBlockDeclaration: () => Hl, isCollapsedRange: () => vO, isColonToken: () => iR, isCommaExpression: () => gd, isCommaListExpression: () => oc, isCommaSequence: () => zj, isCommaToken: () => I8, isComment: () => isComment, isCommonJsExportPropertyAssignment: () => p0, isCommonJsExportedExpression: () => Ok, isCompoundAssignment: () => isCompoundAssignment, isComputedNonLiteralName: () => ck, isComputedPropertyName: () => Ws, isConciseBody: () => MP, isConditionalExpression: () => xR, isConditionalTypeNode: () => V8, isConstTypeReference: () => jS, isConstructSignatureDeclaration: () => R8, isConstructorDeclaration: () => nc, isConstructorTypeNode: () => Gv, isContextualKeyword: () => N0, isContinueStatement: () => jR, isCustomPrologue: () => Tf, isDebuggerStatement: () => WR, isDeclaration: () => ko2, isDeclarationBindingElement: () => Fy, isDeclarationFileName: () => QE, isDeclarationName: () => c4, isDeclarationNameOfEnumOrNamespace: () => IO, isDeclarationReadonly: () => Sk, isDeclarationStatement: () => VP, isDeclarationWithTypeParameterChildren: () => C3, isDeclarationWithTypeParameters: () => nk, isDecorator: () => zl, isDecoratorTarget: () => isDecoratorTarget, isDefaultClause: () => oE, isDefaultImport: () => Z3, isDefaultModifier: () => oR, isDefaultedExpandoInitializer: () => SI, isDeleteExpression: () => bR, isDeleteTarget: () => $I, isDeprecatedDeclaration: () => isDeprecatedDeclaration, isDestructuringAssignment: () => nO, isDiagnosticWithLocation: () => isDiagnosticWithLocation, isDiskPathRoot: () => H5, isDoStatement: () => OR, isDotDotDotToken: () => rR, isDottedName: () => ev, isDynamicName: () => M0, isESSymbolIdentifier: () => pN, isEffectiveExternalModule: () => Yy, isEffectiveModuleDeclaration: () => S3, isEffectiveStrictModeSourceFile: () => tk, isElementAccessChain: () => RS, isElementAccessExpression: () => gs, isEmittedFileOfProgram: () => isEmittedFileOfProgram, isEmptyArrayLiteral: () => _O, isEmptyBindingElement: () => pS, isEmptyBindingPattern: () => uS, isEmptyObjectLiteral: () => oO, isEmptyStatement: () => IR, isEmptyStringLiteral: () => j3, isEndOfDeclarationMarker: () => ej, isEntityName: () => lP, isEntityNameExpression: () => Bs, isEnumConst: () => Tk, isEnumDeclaration: () => i2, isEnumMember: () => cE, isEqualityOperatorKind: () => isEqualityOperatorKind, isEqualsGreaterThanToken: () => sR, isExclamationToken: () => rd, isExcludedFile: () => isExcludedFile, isExclusivelyTypeOnlyImportOrExport: () => isExclusivelyTypeOnlyImportOrExport, isExportAssignment: () => Vo, isExportDeclaration: () => cc, isExportModifier: () => N8, isExportName: () => Uj, isExportNamespaceAsDefaultDeclaration: () => b3, isExportOrDefaultModifier: () => DJ, isExportSpecifier: () => aE, isExportsIdentifier: () => H3, isExportsOrModuleExportsOrAlias: () => isExportsOrModuleExportsOrAlias, isExpression: () => mf, isExpressionNode: () => g0, isExpressionOfExternalModuleImportEqualsDeclaration: () => isExpressionOfExternalModuleImportEqualsDeclaration, isExpressionOfOptionalChainRoot: () => $A, isExpressionStatement: () => Zl, isExpressionWithTypeArguments: () => e2, isExpressionWithTypeArgumentsInClassExtendsClause: () => Z0, isExternalModule: () => Qo, isExternalModuleAugmentation: () => Xy, isExternalModuleImportEqualsDeclaration: () => B3, isExternalModuleIndicator: () => NP, isExternalModuleNameRelative: () => gA, isExternalModuleReference: () => ud, isExternalModuleSymbol: () => isExternalModuleSymbol, isExternalOrCommonJsModule: () => bk, isFileLevelUniqueName: () => m3, isFileProbablyExternalModule: () => ou, isFirstDeclarationOfSymbolParameter: () => isFirstDeclarationOfSymbolParameter, isFixablePromiseHandler: () => isFixablePromiseHandler, isForInOrOfStatement: () => OP, isForInStatement: () => LR, isForInitializer: () => RP, isForOfStatement: () => RR, isForStatement: () => eE, isFunctionBlock: () => O3, isFunctionBody: () => LP, isFunctionDeclaration: () => Wo, isFunctionExpression: () => ad, isFunctionExpressionOrArrowFunction: () => SL, isFunctionLike: () => ga, isFunctionLikeDeclaration: () => HS, isFunctionLikeKind: () => My, isFunctionLikeOrClassStaticBlockDeclaration: () => uf, isFunctionOrConstructorTypeNode: () => hP, isFunctionOrModuleBlock: () => fP, isFunctionSymbol: () => DI, isFunctionTypeNode: () => $l, isFutureReservedKeyword: () => tN, isGeneratedIdentifier: () => cs, isGeneratedPrivateIdentifier: () => Ny, isGetAccessor: () => Tl, isGetAccessorDeclaration: () => Gl, isGetOrSetAccessorDeclaration: () => GA, isGlobalDeclaration: () => isGlobalDeclaration, isGlobalScopeAugmentation: () => vf, isGrammarError: () => ND, isHeritageClause: () => ru, isHoistedFunction: () => _0, isHoistedVariableStatement: () => c0, isIdentifier: () => yt, isIdentifierANonContextualKeyword: () => iN, isIdentifierName: () => YI, isIdentifierOrThisTypeNode: () => aJ, isIdentifierPart: () => Rs, isIdentifierStart: () => Wn, isIdentifierText: () => vy, isIdentifierTypePredicate: () => Fk, isIdentifierTypeReference: () => pL, isIfStatement: () => NR, isIgnoredFileFromWildCardWatching: () => isIgnoredFileFromWildCardWatching, isImplicitGlob: () => Dx, isImportCall: () => s0, isImportClause: () => HR, isImportDeclaration: () => o2, isImportEqualsDeclaration: () => s2, isImportKeyword: () => M8, isImportMeta: () => o0, isImportOrExportSpecifier: () => aP, isImportOrExportSpecifierName: () => isImportOrExportSpecifierName, isImportSpecifier: () => nE, isImportTypeAssertionContainer: () => GR, isImportTypeNode: () => Kl, isImportableFile: () => isImportableFile, isInComment: () => isInComment, isInExpressionContext: () => J3, isInJSDoc: () => q3, isInJSFile: () => Pr, isInJSXText: () => isInJSXText, isInJsonFile: () => pI, isInNonReferenceComment: () => isInNonReferenceComment, isInReferenceComment: () => isInReferenceComment, isInRightSideOfInternalImportEqualsDeclaration: () => isInRightSideOfInternalImportEqualsDeclaration, isInString: () => isInString, isInTemplateString: () => isInTemplateString, isInTopLevelContext: () => Kk, isIncrementalCompilation: () => wM, isIndexSignatureDeclaration: () => Hv, isIndexedAccessTypeNode: () => $8, isInferTypeNode: () => H8, isInfinityOrNaNString: () => bL, isInitializedProperty: () => isInitializedProperty, isInitializedVariable: () => lx, isInsideJsxElement: () => isInsideJsxElement, isInsideJsxElementOrAttribute: () => isInsideJsxElementOrAttribute, isInsideNodeModules: () => isInsideNodeModules, isInsideTemplateLiteral: () => isInsideTemplateLiteral, isInstantiatedModule: () => isInstantiatedModule, isInterfaceDeclaration: () => eu, isInternalDeclaration: () => isInternalDeclaration, isInternalModuleImportEqualsDeclaration: () => lI, isInternalName: () => qj, isIntersectionTypeNode: () => W8, isIntrinsicJsxName: () => P4, isIterationStatement: () => n3, isJSDoc: () => Ho, isJSDocAllType: () => dj, isJSDocAugmentsTag: () => md2, isJSDocAuthorTag: () => bj, isJSDocCallbackTag: () => Tj, isJSDocClassTag: () => pE, isJSDocCommentContainingNode: () => c3, isJSDocConstructSignature: () => MI, isJSDocDeprecatedTag: () => v2, isJSDocEnumTag: () => dE, isJSDocFunctionType: () => dd, isJSDocImplementsTag: () => hE, isJSDocIndexSignature: () => dI, isJSDocLikeText: () => LE, isJSDocLink: () => uj, isJSDocLinkCode: () => pj, isJSDocLinkLike: () => Sl, isJSDocLinkPlain: () => fj, isJSDocMemberName: () => uc, isJSDocNameReference: () => fd, isJSDocNamepathType: () => vj, isJSDocNamespaceBody: () => FP, isJSDocNode: () => Uy, isJSDocNonNullableType: () => hj, isJSDocNullableType: () => uE, isJSDocOptionalParameter: () => Zx, isJSDocOptionalType: () => gj, isJSDocOverloadTag: () => y2, isJSDocOverrideTag: () => fE, isJSDocParameterTag: () => pc, isJSDocPrivateTag: () => m2, isJSDocPropertyLikeTag: () => Dy, isJSDocPropertyTag: () => wj, isJSDocProtectedTag: () => h2, isJSDocPublicTag: () => d2, isJSDocReadonlyTag: () => g2, isJSDocReturnTag: () => b2, isJSDocSatisfiesExpression: () => IL, isJSDocSatisfiesTag: () => T2, isJSDocSeeTag: () => Sj, isJSDocSignature: () => iu, isJSDocTag: () => zy, isJSDocTemplateTag: () => Go, isJSDocThisTag: () => mE, isJSDocThrowsTag: () => Cj, isJSDocTypeAlias: () => Cl, isJSDocTypeAssertion: () => xE, isJSDocTypeExpression: () => lE, isJSDocTypeLiteral: () => f2, isJSDocTypeTag: () => au, isJSDocTypedefTag: () => xj, isJSDocUnknownTag: () => Ej, isJSDocUnknownType: () => mj, isJSDocVariadicType: () => yj, isJSXTagName: () => xf, isJsonEqual: () => gv, isJsonSourceFile: () => a0, isJsxAttribute: () => nj, isJsxAttributeLike: () => XP, isJsxAttributes: () => p2, isJsxChild: () => o3, isJsxClosingElement: () => sE, isJsxClosingFragment: () => rj, isJsxElement: () => l2, isJsxExpression: () => aj, isJsxFragment: () => pd, isJsxOpeningElement: () => tu, isJsxOpeningFragment: () => u2, isJsxOpeningLikeElement: () => _32, isJsxOpeningLikeElementTagName: () => isJsxOpeningLikeElementTagName, isJsxSelfClosingElement: () => tj, isJsxSpreadAttribute: () => ij, isJsxTagNameExpression: () => KP, isJsxText: () => td, isJumpStatementTarget: () => isJumpStatementTarget, isKeyword: () => ba, isKnownSymbol: () => lN, isLabelName: () => isLabelName, isLabelOfLabeledStatement: () => isLabelOfLabeledStatement, isLabeledStatement: () => tE, isLateVisibilityPaintedStatement: () => ak, isLeftHandSideExpression: () => Do, isLeftHandSideOfAssignment: () => rO, isLet: () => xk, isLineBreak: () => un, isLiteralComputedPropertyDeclarationName: () => l4, isLiteralExpression: () => Iy, isLiteralExpressionOfObject: () => rP, isLiteralImportTypeNode: () => k3, isLiteralKind: () => ky, isLiteralLikeAccess: () => wf, isLiteralLikeElementAccess: () => wl, isLiteralNameOfPropertyDeclarationOrIndexAccess: () => isLiteralNameOfPropertyDeclarationOrIndexAccess, isLiteralTypeLikeExpression: () => cJ, isLiteralTypeLiteral: () => CP, isLiteralTypeNode: () => Yv, isLocalName: () => E2, isLogicalOperator: () => ZN, isLogicalOrCoalescingAssignmentExpression: () => eO, isLogicalOrCoalescingAssignmentOperator: () => jf, isLogicalOrCoalescingBinaryExpression: () => tO, isLogicalOrCoalescingBinaryOperator: () => Z4, isMappedTypeNode: () => K8, isMemberName: () => js, isMergeDeclarationMarker: () => ZR, isMetaProperty: () => t2, isMethodDeclaration: () => Vl, isMethodOrAccessor: () => Ly, isMethodSignature: () => L8, isMinusToken: () => Wv, isMissingDeclaration: () => YR, isModifier: () => Oy, isModifierKind: () => Wi, isModifierLike: () => ff, isModuleAugmentationExternal: () => x3, isModuleBlock: () => rE, isModuleBody: () => jP, isModuleDeclaration: () => Ea, isModuleExportsAccessExpression: () => T0, isModuleIdentifier: () => G3, isModuleName: () => _J, isModuleOrEnumDeclaration: () => qP, isModuleReference: () => $P, isModuleSpecifierLike: () => isModuleSpecifierLike, isModuleWithStringLiteralName: () => KD, isNameOfFunctionDeclaration: () => isNameOfFunctionDeclaration, isNameOfModuleDeclaration: () => isNameOfModuleDeclaration, isNamedClassElement: () => dP, isNamedDeclaration: () => af, isNamedEvaluation: () => fN, isNamedEvaluationSource: () => S4, isNamedExportBindings: () => QA, isNamedExports: () => iE, isNamedImportBindings: () => BP, isNamedImports: () => XR, isNamedImportsOrExports: () => YO, isNamedTupleMember: () => $v, isNamespaceBody: () => JP, isNamespaceExport: () => ld, isNamespaceExportDeclaration: () => a2, isNamespaceImport: () => _22, isNamespaceReexportDeclaration: () => oI, isNewExpression: () => X8, isNewExpressionTarget: () => isNewExpressionTarget, isNightly: () => PN, isNoSubstitutionTemplateLiteral: () => k8, isNode: () => eP, isNodeArray: () => _s, isNodeArrayMultiLine: () => AO, isNodeDescendantOf: () => KI, isNodeKind: () => gl, isNodeLikeSystem: () => M5, isNodeModulesDirectory: () => aA, isNodeWithPossibleHoistedDeclaration: () => zI, isNonContextualKeyword: () => y4, isNonExportDefaultModifier: () => kJ, isNonGlobalAmbientModule: () => XD, isNonGlobalDeclaration: () => isNonGlobalDeclaration, isNonNullAccess: () => kL, isNonNullChain: () => JS, isNonNullExpression: () => Uo, isNonStaticMethodOrAccessorWithPrivateName: () => isNonStaticMethodOrAccessorWithPrivateName, isNotEmittedOrPartiallyEmittedNode: () => DP, isNotEmittedStatement: () => c2, isNullishCoalesce: () => XA, isNumber: () => gi, isNumericLiteral: () => zs, isNumericLiteralName: () => $x, isObjectBindingElementWithoutPropertyName: () => isObjectBindingElementWithoutPropertyName, isObjectBindingOrAssignmentElement: () => YS, isObjectBindingOrAssignmentPattern: () => XS, isObjectBindingPattern: () => gR, isObjectLiteralElement: () => Wy, isObjectLiteralElementLike: () => jy, isObjectLiteralExpression: () => Hs, isObjectLiteralMethod: () => jk, isObjectLiteralOrClassExpressionMethodOrAccessor: () => Jk, isObjectTypeDeclaration: () => $O, isOctalDigit: () => hy, isOmittedExpression: () => cd, isOptionalChain: () => Ay, isOptionalChainRoot: () => Py, isOptionalDeclaration: () => DL, isOptionalJSDocPropertyLikeTag: () => Yx, isOptionalTypeNode: () => q8, isOuterExpression: () => yd, isOutermostOptionalChain: () => KA, isOverrideModifier: () => pR, isPackedArrayLiteral: () => hL, isParameter: () => Vs, isParameterDeclaration: () => mN, isParameterOrCatchClauseVariable: () => TL, isParameterPropertyDeclaration: () => lS, isParameterPropertyModifier: () => WS, isParenthesizedExpression: () => qo, isParenthesizedTypeNode: () => Kv, isParseTreeNode: () => pl2, isPartOfTypeNode: () => l0, isPartOfTypeQuery: () => F3, isPartiallyEmittedExpression: () => Z8, isPatternMatch: () => z1, isPinnedComment: () => v3, isPlainJsFile: () => PD, isPlusToken: () => zv, isPossiblyTypeArgumentPosition: () => isPossiblyTypeArgumentPosition, isPostfixUnaryExpression: () => Q8, isPrefixUnaryExpression: () => od, isPrivateIdentifier: () => vn, isPrivateIdentifierClassElementDeclaration: () => zS, isPrivateIdentifierPropertyAccessExpression: () => cP, isPrivateIdentifierSymbol: () => uN, isProgramBundleEmitBuildInfo: () => isProgramBundleEmitBuildInfo, isProgramUptoDate: () => isProgramUptoDate, isPrologueDirective: () => us, isPropertyAccessChain: () => LS, isPropertyAccessEntityNameExpression: () => rx, isPropertyAccessExpression: () => bn, isPropertyAccessOrQualifiedName: () => TP, isPropertyAccessOrQualifiedNameOrImportTypeNode: () => bP, isPropertyAssignment: () => lc, isPropertyDeclaration: () => Bo, isPropertyName: () => vl, isPropertyNameLiteral: () => L0, isPropertySignature: () => Wl, isProtoSetter: () => T4, isPrototypeAccess: () => Nl, isPrototypePropertyAssignment: () => CI, isPunctuation: () => isPunctuation, isPushOrUnshiftIdentifier: () => dN, isQualifiedName: () => rc, isQuestionDotToken: () => aR, isQuestionOrExclamationToken: () => iJ, isQuestionOrPlusOrMinusToken: () => oJ, isQuestionToken: () => ql, isRawSourceMap: () => isRawSourceMap, isReadonlyKeyword: () => O8, isReadonlyKeywordOrPlusOrMinusToken: () => sJ, isRecognizedTripleSlashComment: () => jD, isReferenceFileLocation: () => isReferenceFileLocation, isReferencedFile: () => isReferencedFile, isRegularExpressionLiteral: () => QL, isRequireCall: () => El, isRequireVariableStatement: () => W3, isRestParameter: () => u3, isRestTypeNode: () => U8, isReturnStatement: () => FR, isReturnStatementWithFixablePromiseHandler: () => isReturnStatementWithFixablePromiseHandler, isRightSideOfAccessExpression: () => nx, isRightSideOfPropertyAccess: () => isRightSideOfPropertyAccess, isRightSideOfQualifiedName: () => isRightSideOfQualifiedName, isRightSideOfQualifiedNameOrPropertyAccess: () => aO, isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName: () => sO, isRootedDiskPath: () => A_, isSameEntityName: () => z_, isSatisfiesExpression: () => AR, isScopeMarker: () => i3, isSemicolonClassElement: () => kR, isSetAccessor: () => bl, isSetAccessorDeclaration: () => ic, isShebangTrivia: () => gy, isShorthandAmbientModuleSymbol: () => YD, isShorthandPropertyAssignment: () => nu, isSignedNumericLiteral: () => O0, isSimpleCopiableExpression: () => isSimpleCopiableExpression, isSimpleInlineableExpression: () => isSimpleInlineableExpression, isSingleOrDoubleQuote: () => hI, isSourceFile: () => wi, isSourceFileFromLibrary: () => isSourceFileFromLibrary, isSourceFileJS: () => y0, isSourceFileNotJS: () => uI, isSourceFileNotJson: () => fI, isSourceMapping: () => isSourceMapping, isSpecialPropertyDeclaration: () => AI, isSpreadAssignment: () => _E, isSpreadElement: () => Zv, isStatement: () => a3, isStatementButNotDeclaration: () => HP, isStatementOrBlock: () => s3, isStatementWithLocals: () => DD, isStatic: () => G0, isStaticModifier: () => lR, isString: () => Ji, isStringAKeyword: () => nN, isStringANonContextualKeyword: () => rN, isStringAndEmptyAnonymousObjectIntersection: () => isStringAndEmptyAnonymousObjectIntersection, isStringDoubleQuoted: () => gI, isStringLiteral: () => Gn, isStringLiteralLike: () => Ti, isStringLiteralOrJsxExpression: () => YP, isStringLiteralOrTemplate: () => isStringLiteralOrTemplate, isStringOrNumericLiteralLike: () => Ta, isStringOrRegularExpressionOrTemplateLiteral: () => isStringOrRegularExpressionOrTemplateLiteral, isStringTextContainingNode: () => _P, isSuperCall: () => Ek, isSuperKeyword: () => nd, isSuperOrSuperProperty: () => Zk, isSuperProperty: () => Sf, isSupportedSourceFileName: () => GM, isSwitchStatement: () => qR, isSyntaxList: () => Aj, isSyntheticExpression: () => PR, isSyntheticReference: () => QR, isTagName: () => isTagName, isTaggedTemplateExpression: () => Y8, isTaggedTemplateTag: () => isTaggedTemplateTag, isTemplateExpression: () => ER, isTemplateHead: () => ZL, isTemplateLiteral: () => EP, isTemplateLiteralKind: () => yl, isTemplateLiteralToken: () => nP, isTemplateLiteralTypeNode: () => hR, isTemplateLiteralTypeSpan: () => mR, isTemplateMiddle: () => eR, isTemplateMiddleOrTemplateTail: () => iP, isTemplateSpan: () => DR, isTemplateTail: () => tR, isTextWhiteSpaceLike: () => isTextWhiteSpaceLike, isThis: () => isThis, isThisContainerOrFunctionBlock: () => $k, isThisIdentifier: () => Mf, isThisInTypeQuery: () => qN, isThisInitializedDeclaration: () => tI, isThisInitializedObjectBindingExpression: () => rI, isThisProperty: () => eI, isThisTypeNode: () => Xv, isThisTypeParameter: () => Kx, isThisTypePredicate: () => Bk, isThrowStatement: () => UR, isToken: () => tP, isTokenKind: () => BS, isTraceEnabled: () => isTraceEnabled, isTransientSymbol: () => $y, isTrivia: () => aN, isTryStatement: () => zR, isTupleTypeNode: () => B8, isTypeAlias: () => LI, isTypeAliasDeclaration: () => n2, isTypeAssertionExpression: () => vR, isTypeDeclaration: () => Xx, isTypeElement: () => Ry, isTypeKeyword: () => isTypeKeyword, isTypeKeywordToken: () => isTypeKeywordToken, isTypeKeywordTokenOrIdentifier: () => isTypeKeywordTokenOrIdentifier, isTypeLiteralNode: () => id, isTypeNode: () => Jy, isTypeNodeKind: () => hx, isTypeOfExpression: () => TR, isTypeOnlyExportDeclaration: () => US, isTypeOnlyImportDeclaration: () => qS, isTypeOnlyImportOrExportDeclaration: () => sP, isTypeOperatorNode: () => G8, isTypeParameterDeclaration: () => Fo, isTypePredicateNode: () => j8, isTypeQueryNode: () => J8, isTypeReferenceNode: () => ac, isTypeReferenceType: () => tD, isUMDExportSymbol: () => VO, isUnaryExpression: () => t3, isUnaryExpressionWithWrite: () => wP, isUnicodeIdentifierStart: () => UT, isUnionTypeNode: () => z8, isUnparsedNode: () => ZA, isUnparsedPrepend: () => _j, isUnparsedSource: () => lj, isUnparsedTextLike: () => FS, isUrl: () => V5, isValidBigIntString: () => zx, isValidESSymbolDeclaration: () => Mk, isValidTypeOnlyAliasUseSite: () => _L, isValueSignatureDeclaration: () => WI, isVarConst: () => D3, isVariableDeclaration: () => Vi, isVariableDeclarationInVariableStatement: () => N3, isVariableDeclarationInitializedToBareOrAccessedRequire: () => Ef, isVariableDeclarationInitializedToRequire: () => U3, isVariableDeclarationList: () => r2, isVariableLike: () => u0, isVariableLikeOrAccessor: () => Nk, isVariableStatement: () => zo, isVoidExpression: () => Qv, isWatchSet: () => OO, isWhileStatement: () => MR, isWhiteSpaceLike: () => os23, isWhiteSpaceSingleLine: () => N_, isWithStatement: () => BR, isWriteAccess: () => FO, isWriteOnlyAccess: () => JO, isYieldExpression: () => wR, jsxModeNeedsExplicitImport: () => jsxModeNeedsExplicitImport, keywordPart: () => keywordPart, last: () => Zn, lastOrUndefined: () => Cn, length: () => I, libMap: () => libMap, libs: () => libs, lineBreakPart: () => lineBreakPart, linkNamePart: () => linkNamePart, linkPart: () => linkPart, linkTextPart: () => linkTextPart, listFiles: () => listFiles, loadModuleFromGlobalCache: () => loadModuleFromGlobalCache, loadWithModeAwareCache: () => loadWithModeAwareCache, makeIdentifierFromModuleName: () => GD, makeImport: () => makeImport, makeImportIfNecessary: () => makeImportIfNecessary, makeStringLiteral: () => makeStringLiteral, mangleScopedPackageName: () => mangleScopedPackageName, map: () => Ze, mapAllOrFail: () => Pt, mapDefined: () => qt, mapDefinedEntries: () => Ri, mapDefinedIterator: () => Zr, mapEntries: () => be, mapIterator: () => st, mapOneOrMany: () => mapOneOrMany, mapToDisplayParts: () => mapToDisplayParts, matchFiles: () => qM, matchPatternOrExact: () => tL, matchedText: () => S5, matchesExclude: () => matchesExclude, maybeBind: () => le, maybeSetLocalizedDiagnosticMessages: () => vx, memoize: () => tl, memoizeCached: () => D1, memoizeOne: () => An, memoizeWeak: () => P1, metadataHelper: () => metadataHelper, min: () => N1, minAndMax: () => nL, missingFileModifiedTime: () => missingFileModifiedTime, modifierToFlag: () => Q0, modifiersToFlags: () => Vn, moduleOptionDeclaration: () => moduleOptionDeclaration, moduleResolutionIsEqualTo: () => TD, moduleResolutionNameAndModeGetter: () => moduleResolutionNameAndModeGetter, moduleResolutionOptionDeclarations: () => moduleResolutionOptionDeclarations, moduleResolutionSupportsPackageJsonExportsAndImports: () => _v, moduleResolutionUsesNodeModules: () => moduleResolutionUsesNodeModules, moduleSpecifiers: () => ts_moduleSpecifiers_exports, moveEmitHelpers: () => moveEmitHelpers, moveRangeEnd: () => gO, moveRangePastDecorators: () => _x, moveRangePastModifiers: () => yO, moveRangePos: () => Ff, moveSyntheticComments: () => moveSyntheticComments, mutateMap: () => UO, mutateMapSkippingNewValues: () => fx, needsParentheses: () => needsParentheses, needsScopeMarker: () => IP, newCaseClauseTracker: () => newCaseClauseTracker, newPrivateEnvironment: () => newPrivateEnvironment, noEmitNotification: () => noEmitNotification, noEmitSubstitution: () => noEmitSubstitution, noTransformers: () => noTransformers, noTruncationMaximumTruncationLength: () => n8, nodeCanBeDecorated: () => R3, nodeHasName: () => hS, nodeIsDecorated: () => q_, nodeIsMissing: () => va, nodeIsPresent: () => xl, nodeIsSynthesized: () => fs40, nodeModuleNameResolver: () => nodeModuleNameResolver, nodeModulesPathPart: () => nodeModulesPathPart, nodeNextJsonConfigResolver: () => nodeNextJsonConfigResolver, nodeOrChildIsDecorated: () => m0, nodeOverlapsWithStartEnd: () => nodeOverlapsWithStartEnd, nodePosToString: () => ID, nodeSeenTracker: () => nodeSeenTracker, nodeStartsNewLexicalEnvironment: () => hN, nodeToDisplayParts: () => nodeToDisplayParts, noop: () => yn, noopFileWatcher: () => noopFileWatcher, noopPush: () => CT, normalizePath: () => Un, normalizeSlashes: () => Eo, not: () => w5, notImplemented: () => A1, notImplementedResolver: () => notImplementedResolver, nullNodeConverters: () => nullNodeConverters, nullParenthesizerRules: () => Jv, nullTransformationContext: () => nullTransformationContext, objectAllocator: () => lr, operatorPart: () => operatorPart, optionDeclarations: () => optionDeclarations, optionMapToObject: () => optionMapToObject, optionsAffectingProgramStructure: () => optionsAffectingProgramStructure, optionsForBuild: () => optionsForBuild, optionsForWatch: () => optionsForWatch, optionsHaveChanges: () => J_, optionsHaveModuleResolutionChanges: () => p3, or: () => W1, orderedRemoveItem: () => J, orderedRemoveItemAt: () => vT, outFile: () => B0, packageIdToPackageName: () => f3, packageIdToString: () => xD, padLeft: () => D5, padRight: () => k5, paramHelper: () => paramHelper, parameterIsThisKeyword: () => kl, parameterNamePart: () => parameterNamePart, parseBaseNodeFactory: () => I2, parseBigInt: () => oL, parseBuildCommand: () => parseBuildCommand, parseCommandLine: () => parseCommandLine, parseCommandLineWorker: () => parseCommandLineWorker, parseConfigFileTextToJson: () => parseConfigFileTextToJson, parseConfigFileWithSystem: () => parseConfigFileWithSystem, parseConfigHostFromCompilerHostLike: () => parseConfigHostFromCompilerHostLike, parseCustomTypeOption: () => parseCustomTypeOption, parseIsolatedEntityName: () => $J, parseIsolatedJSDocComment: () => XJ, parseJSDocTypeExpressionForTests: () => YJ, parseJsonConfigFileContent: () => parseJsonConfigFileContent, parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent, parseJsonText: () => KJ, parseListTypeOption: () => parseListTypeOption, parseNodeFactory: () => dc, parseNodeModuleFromPath: () => parseNodeModuleFromPath, parsePackageName: () => parsePackageName, parsePseudoBigInt: () => Hf, parseValidBigInt: () => Ux, patchWriteFileEnsuringDirectory: () => patchWriteFileEnsuringDirectory, pathContainsNodeModules: () => pathContainsNodeModules, pathIsAbsolute: () => sy, pathIsBareSpecifier: () => G5, pathIsRelative: () => So, patternText: () => T5, perfLogger: () => Dp, performIncrementalCompilation: () => performIncrementalCompilation, performance: () => ts_performance_exports, plainJSErrors: () => plainJSErrors, positionBelongsToNode: () => positionBelongsToNode, positionIsASICandidate: () => positionIsASICandidate, positionIsSynthesized: () => hs, positionsAreOnSameLine: () => $_, preProcessFile: () => preProcessFile, probablyUsesSemicolons: () => probablyUsesSemicolons, processCommentPragmas: () => ZE, processPragmasIntoFields: () => e7, processTaggedTemplateExpression: () => processTaggedTemplateExpression, programContainsEsModules: () => programContainsEsModules, programContainsModules: () => programContainsModules, projectReferenceIsEqualTo: () => bD, propKeyHelper: () => propKeyHelper, propertyNamePart: () => propertyNamePart, pseudoBigIntToString: () => yv, punctuationPart: () => punctuationPart, pushIfUnique: () => qn, quote: () => quote, quotePreferenceFromString: () => quotePreferenceFromString, rangeContainsPosition: () => rangeContainsPosition, rangeContainsPositionExclusive: () => rangeContainsPositionExclusive, rangeContainsRange: () => rangeContainsRange, rangeContainsRangeExclusive: () => rangeContainsRangeExclusive, rangeContainsStartEnd: () => rangeContainsStartEnd, rangeEndIsOnSameLineAsRangeStart: () => EO, rangeEndPositionsAreOnSameLine: () => xO, rangeEquals: () => Kc, rangeIsOnSingleLine: () => TO, rangeOfNode: () => iL, rangeOfTypeParameters: () => aL, rangeOverlapsWithStartEnd: () => rangeOverlapsWithStartEnd, rangeStartIsOnSameLineAsRangeEnd: () => cx, rangeStartPositionsAreOnSameLine: () => SO, readBuilderProgram: () => readBuilderProgram, readConfigFile: () => readConfigFile, readHelper: () => readHelper, readJson: () => hO, readJsonConfigFile: () => readJsonConfigFile, readJsonOrUndefined: () => ax, realizeDiagnostics: () => realizeDiagnostics, reduceEachLeadingCommentRange: () => zT, reduceEachTrailingCommentRange: () => WT, reduceLeft: () => Qa, reduceLeftIterator: () => K, reducePathComponents: () => is, refactor: () => ts_refactor_exports, regExpEscape: () => JM, relativeComplement: () => h_, removeAllComments: () => removeAllComments, removeEmitHelper: () => removeEmitHelper, removeExtension: () => Fx, removeFileExtension: () => Ll, removeIgnoredPath: () => removeIgnoredPath, removeMinAndVersionNumbers: () => q1, removeOptionality: () => removeOptionality, removePrefix: () => x5, removeSuffix: () => F1, removeTrailingDirectorySeparator: () => P_, repeatString: () => repeatString, replaceElement: () => ei, resolutionExtensionIsTSOrJson: () => YM, resolveConfigFileProjectName: () => resolveConfigFileProjectName, resolveJSModule: () => resolveJSModule, resolveModuleName: () => resolveModuleName, resolveModuleNameFromCache: () => resolveModuleNameFromCache, resolvePackageNameToPackageJson: () => resolvePackageNameToPackageJson, resolvePath: () => oy, resolveProjectReferencePath: () => resolveProjectReferencePath, resolveTripleslashReference: () => resolveTripleslashReference, resolveTypeReferenceDirective: () => resolveTypeReferenceDirective, resolvingEmptyArray: () => t8, restHelper: () => restHelper, returnFalse: () => w_, returnNoopFileWatcher: () => returnNoopFileWatcher, returnTrue: () => vp, returnUndefined: () => C1, returnsPromise: () => returnsPromise, runInitializersHelper: () => runInitializersHelper, sameFlatMap: () => at, sameMap: () => tt, sameMapping: () => sameMapping, scanShebangTrivia: () => yy, scanTokenAtPosition: () => yk, scanner: () => Zo, screenStartingMessageCodes: () => screenStartingMessageCodes, semanticDiagnosticsOptionDeclarations: () => semanticDiagnosticsOptionDeclarations, serializeCompilerOptions: () => serializeCompilerOptions, server: () => ts_server_exports, servicesVersion: () => E7, setCommentRange: () => setCommentRange, setConfigFileInOptions: () => setConfigFileInOptions, setConstantValue: () => setConstantValue, setEachParent: () => Q_, setEmitFlags: () => setEmitFlags, setFunctionNameHelper: () => setFunctionNameHelper, setGetSourceFileAsHashVersioned: () => setGetSourceFileAsHashVersioned, setIdentifierAutoGenerate: () => setIdentifierAutoGenerate, setIdentifierGeneratedImportReference: () => setIdentifierGeneratedImportReference, setIdentifierTypeArguments: () => setIdentifierTypeArguments, setInternalEmitFlags: () => setInternalEmitFlags, setLocalizedDiagnosticMessages: () => yx, setModuleDefaultHelper: () => setModuleDefaultHelper, setNodeFlags: () => dL, setObjectAllocator: () => gx, setOriginalNode: () => Dn, setParent: () => Sa, setParentRecursive: () => Vx, setPrivateIdentifier: () => setPrivateIdentifier, setResolvedModule: () => gD, setResolvedTypeReferenceDirective: () => yD, setSnippetElement: () => setSnippetElement, setSourceMapRange: () => setSourceMapRange, setStackTraceLimit: () => setStackTraceLimit, setStartsOnNewLine: () => setStartsOnNewLine, setSyntheticLeadingComments: () => setSyntheticLeadingComments, setSyntheticTrailingComments: () => setSyntheticTrailingComments, setSys: () => setSys, setSysLog: () => setSysLog, setTextRange: () => Rt, setTextRangeEnd: () => Wx, setTextRangePos: () => Gf, setTextRangePosEnd: () => Us, setTextRangePosWidth: () => $f, setTokenSourceMapRange: () => setTokenSourceMapRange, setTypeNode: () => setTypeNode, setUILocale: () => xp, setValueDeclaration: () => PI, shouldAllowImportingTsExtension: () => shouldAllowImportingTsExtension, shouldPreserveConstEnums: () => EM, shouldUseUriStyleNodeCoreModules: () => shouldUseUriStyleNodeCoreModules, showModuleSpecifier: () => HO, signatureHasLiteralTypes: () => signatureHasLiteralTypes, signatureHasRestParameter: () => signatureHasRestParameter, signatureToDisplayParts: () => signatureToDisplayParts, single: () => Yc, singleElementArray: () => Cp, singleIterator: () => Ka, singleOrMany: () => mo, singleOrUndefined: () => Xa, skipAlias: () => RO, skipAssertions: () => Hj, skipConstraint: () => skipConstraint, skipOuterExpressions: () => $o, skipParentheses: () => Pl, skipPartiallyEmittedExpressions: () => lf, skipTrivia: () => Ar, skipTypeChecking: () => sL, skipTypeParentheses: () => GI, skipWhile: () => N5, sliceAfter: () => rL, some: () => Ke, sort: () => Is, sortAndDeduplicate: () => uo, sortAndDeduplicateDiagnostics: () => yA, sourceFileAffectingCompilerOptions: () => sourceFileAffectingCompilerOptions, sourceFileMayBeEmitted: () => q0, sourceMapCommentRegExp: () => sourceMapCommentRegExp, sourceMapCommentRegExpDontCareLineStart: () => sourceMapCommentRegExpDontCareLineStart, spacePart: () => spacePart, spanMap: () => co, spreadArrayHelper: () => spreadArrayHelper, stableSort: () => Ns, startEndContainsRange: () => startEndContainsRange, startEndOverlapsWithStartEnd: () => startEndOverlapsWithStartEnd, startOnNewLine: () => vd, startTracing: () => startTracing, startsWith: () => Pn, startsWithDirectory: () => rA, startsWithUnderscore: () => startsWithUnderscore, startsWithUseStrict: () => SE, stringContains: () => Fi, stringContainsAt: () => stringContainsAt, stringToToken: () => _l, stripQuotes: () => CN, supportedDeclarationExtensions: () => Rv, supportedJSExtensions: () => Mv, supportedJSExtensionsFlat: () => Lv, supportedLocaleDirectories: () => Hy, supportedTSExtensions: () => Jo, supportedTSExtensionsFlat: () => Ov, supportedTSImplementationExtensions: () => b8, suppressLeadingAndTrailingTrivia: () => suppressLeadingAndTrailingTrivia, suppressLeadingTrivia: () => suppressLeadingTrivia, suppressTrailingTrivia: () => suppressTrailingTrivia, symbolEscapedNameNoDefault: () => symbolEscapedNameNoDefault, symbolName: () => rf, symbolNameNoDefault: () => symbolNameNoDefault, symbolPart: () => symbolPart, symbolToDisplayParts: () => symbolToDisplayParts, syntaxMayBeASICandidate: () => syntaxMayBeASICandidate, syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI, sys: () => iy, sysLog: () => sysLog, tagNamesAreEquivalent: () => Hi, takeWhile: () => I5, targetOptionDeclaration: () => targetOptionDeclaration, templateObjectHelper: () => templateObjectHelper, testFormatSettings: () => testFormatSettings, textChangeRangeIsUnchanged: () => cS, textChangeRangeNewSpan: () => R_, textChanges: () => ts_textChanges_exports, textOrKeywordPart: () => textOrKeywordPart, textPart: () => textPart, textRangeContainsPositionInclusive: () => bA, textSpanContainsPosition: () => vA, textSpanContainsTextSpan: () => TA, textSpanEnd: () => Ir, textSpanIntersection: () => _S, textSpanIntersectsWith: () => EA, textSpanIntersectsWithPosition: () => wA, textSpanIntersectsWithTextSpan: () => xA, textSpanIsEmpty: () => sS, textSpanOverlap: () => oS, textSpanOverlapsWith: () => SA, textSpansEqual: () => textSpansEqual, textToKeywordObj: () => cl, timestamp: () => ts, toArray: () => en2, toBuilderFileEmit: () => toBuilderFileEmit, toBuilderStateFileInfoForMultiEmit: () => toBuilderStateFileInfoForMultiEmit, toEditorSettings: () => lu, toFileNameLowerCase: () => Tp, toLowerCase: () => bp, toPath: () => Ui, toProgramEmitPending: () => toProgramEmitPending, tokenIsIdentifierOrKeyword: () => fr, tokenIsIdentifierOrKeywordOrGreaterThan: () => qT, tokenToString: () => Br, trace: () => trace, tracing: () => rs, tracingEnabled: () => tracingEnabled, transform: () => transform, transformClassFields: () => transformClassFields, transformDeclarations: () => transformDeclarations, transformECMAScriptModule: () => transformECMAScriptModule, transformES2015: () => transformES2015, transformES2016: () => transformES2016, transformES2017: () => transformES2017, transformES2018: () => transformES2018, transformES2019: () => transformES2019, transformES2020: () => transformES2020, transformES2021: () => transformES2021, transformES5: () => transformES5, transformESDecorators: () => transformESDecorators, transformESNext: () => transformESNext, transformGenerators: () => transformGenerators, transformJsx: () => transformJsx, transformLegacyDecorators: () => transformLegacyDecorators, transformModule: () => transformModule, transformNodeModule: () => transformNodeModule, transformNodes: () => transformNodes, transformSystemModule: () => transformSystemModule, transformTypeScript: () => transformTypeScript, transpile: () => transpile, transpileModule: () => transpileModule, transpileOptionValueCompilerOptions: () => transpileOptionValueCompilerOptions, trimString: () => Pp, trimStringEnd: () => X1, trimStringStart: () => nl, tryAddToSet: () => ua, tryAndIgnoreErrors: () => tryAndIgnoreErrors, tryCast: () => ln, tryDirectoryExists: () => tryDirectoryExists, tryExtractTSExtension: () => uO, tryFileExists: () => tryFileExists, tryGetClassExtendingExpressionWithTypeArguments: () => ex, tryGetClassImplementingOrExtendingExpressionWithTypeArguments: () => tx, tryGetDirectories: () => tryGetDirectories, tryGetExtensionFromPath: () => hv, tryGetImportFromModuleSpecifier: () => Y3, tryGetJSDocSatisfiesTypeNode: () => e8, tryGetModuleNameFromFile: () => CE, tryGetModuleSpecifierFromDeclaration: () => kI, tryGetNativePerformanceHooks: () => J5, tryGetPropertyAccessOrIdentifierToString: () => tv, tryGetPropertyNameOfBindingOrAssignmentElement: () => PE, tryGetSourceMappingURL: () => tryGetSourceMappingURL, tryGetTextOfPropertyName: () => e0, tryIOAndConsumeErrors: () => tryIOAndConsumeErrors, tryParsePattern: () => Bx, tryParsePatterns: () => XM, tryParseRawSourceMap: () => tryParseRawSourceMap, tryReadDirectory: () => tryReadDirectory, tryReadFile: () => tryReadFile, tryRemoveDirectoryPrefix: () => jM, tryRemoveExtension: () => Jx, tryRemovePrefix: () => ST, tryRemoveSuffix: () => B1, typeAcquisitionDeclarations: () => typeAcquisitionDeclarations, typeAliasNamePart: () => typeAliasNamePart, typeDirectiveIsEqualTo: () => ED, typeKeywords: () => typeKeywords, typeParameterNamePart: () => typeParameterNamePart, typeReferenceResolutionNameAndModeGetter: () => typeReferenceResolutionNameAndModeGetter, typeToDisplayParts: () => typeToDisplayParts, unchangedPollThresholds: () => unchangedPollThresholds, unchangedTextChangeRange: () => Vy, unescapeLeadingUnderscores: () => dl, unmangleScopedPackageName: () => unmangleScopedPackageName, unorderedRemoveItem: () => bT, unorderedRemoveItemAt: () => U1, unreachableCodeIsError: () => yM, unusedLabelIsError: () => vM, unwrapInnermostStatementOfLabel: () => Rk, updateErrorForNoInputFiles: () => updateErrorForNoInputFiles, updateLanguageServiceSourceFile: () => T7, updateMissingFilePathsWatch: () => updateMissingFilePathsWatch, updatePackageJsonWatch: () => updatePackageJsonWatch, updateResolutionField: () => updateResolutionField, updateSharedExtendedConfigFileWatcher: () => updateSharedExtendedConfigFileWatcher, updateSourceFile: () => k2, updateWatchingWildcardDirectories: () => updateWatchingWildcardDirectories, usesExtensionsOnImports: () => Rx, usingSingleLineStringWriter: () => mD, utf16EncodeAsString: () => by, validateLocaleAndSetLanguage: () => DA, valuesHelper: () => valuesHelper, version: () => C, versionMajorMinor: () => m, visitArray: () => visitArray, visitCommaListElements: () => visitCommaListElements, visitEachChild: () => visitEachChild, visitFunctionBody: () => visitFunctionBody, visitIterationBody: () => visitIterationBody, visitLexicalEnvironment: () => visitLexicalEnvironment, visitNode: () => visitNode, visitNodes: () => visitNodes2, visitParameterList: () => visitParameterList, walkUpBindingElementsAndPatterns: () => fS, walkUpLexicalEnvironments: () => walkUpLexicalEnvironments, walkUpOuterExpressions: () => Vj, walkUpParenthesizedExpressions: () => D0, walkUpParenthesizedTypes: () => VI, walkUpParenthesizedTypesAndGetParentAndChild: () => HI, whitespaceOrMapCommentRegExp: () => whitespaceOrMapCommentRegExp, writeCommentRange: () => $N, writeFile: () => jN, writeFileEnsuringDirectories: () => JN, zipToModeAwareCache: () => zipToModeAwareCache, zipWith: () => ce });
|
|
181434
181512
|
var R7 = D({ "src/typescript/_namespaces/ts.ts"() {
|
|
181435
181513
|
"use strict";
|
|
181436
181514
|
nn(), l7(), L2(), FB();
|
|
@@ -189370,7 +189448,7 @@ var require_parser_espree = __commonJS({
|
|
|
189370
189448
|
return De[a];
|
|
189371
189449
|
};
|
|
189372
189450
|
});
|
|
189373
|
-
var
|
|
189451
|
+
var os23 = C((Ll, us) => {
|
|
189374
189452
|
var vu = et(), as = Pe(), ns = Ot(), gu = Ri(), xu = qi(), yu = ss(), Au = TypeError, Cu = yu("toPrimitive");
|
|
189375
189453
|
us.exports = function(a, u) {
|
|
189376
189454
|
if (!as(a) || ns(a)) return a;
|
|
@@ -189383,7 +189461,7 @@ var require_parser_espree = __commonJS({
|
|
|
189383
189461
|
};
|
|
189384
189462
|
});
|
|
189385
189463
|
var Mt = C((Vl, hs) => {
|
|
189386
|
-
var Eu =
|
|
189464
|
+
var Eu = os23(), bu = Ot();
|
|
189387
189465
|
hs.exports = function(a) {
|
|
189388
189466
|
var u = Eu(a, "string");
|
|
189389
189467
|
return bu(u) ? u : u + "";
|
|
@@ -196051,7 +196129,7 @@ var require_parser_postcss = __commonJS({
|
|
|
196051
196129
|
};
|
|
196052
196130
|
ts.exports = { includes: rs(true), indexOf: rs(false) };
|
|
196053
196131
|
});
|
|
196054
|
-
var
|
|
196132
|
+
var os23 = U((Sh, ss) => {
|
|
196055
196133
|
var Wc = xe(), ct = Te(), Vc = nr(), Gc = ns().indexOf, Hc = nt(), is = Wc([].push);
|
|
196056
196134
|
ss.exports = function(e, n) {
|
|
196057
196135
|
var i = Vc(e), u = 0, o = [], h;
|
|
@@ -196064,7 +196142,7 @@ var require_parser_postcss = __commonJS({
|
|
|
196064
196142
|
as.exports = ["constructor", "hasOwnProperty", "isPrototypeOf", "propertyIsEnumerable", "toLocaleString", "toString", "valueOf"];
|
|
196065
196143
|
});
|
|
196066
196144
|
var ls = U((cs) => {
|
|
196067
|
-
var Jc =
|
|
196145
|
+
var Jc = os23(), Kc = us(), Qc = Kc.concat("length", "prototype");
|
|
196068
196146
|
cs.f = Object.getOwnPropertyNames || function(n) {
|
|
196069
196147
|
return Jc(n, Qc);
|
|
196070
196148
|
};
|
|
@@ -206812,7 +206890,7 @@ var require_parser_markdown = __commonJS({
|
|
|
206812
206890
|
on.exports = {};
|
|
206813
206891
|
});
|
|
206814
206892
|
var Dn = $2((ep, ln) => {
|
|
206815
|
-
var ns = un(), cn = Fe(), is = Ie(), as = Yr(), uu = ke(), tu = pr(),
|
|
206893
|
+
var ns = un(), cn = Fe(), is = Ie(), as = Yr(), uu = ke(), tu = pr(), os23 = an(), ss = ru(), sn = "Object already initialized", nu = cn.TypeError, cs = cn.WeakMap, vr, Ke, mr, ls = function(e) {
|
|
206816
206894
|
return mr(e) ? Ke(e) : vr(e, {});
|
|
206817
206895
|
}, Ds = function(e) {
|
|
206818
206896
|
return function(r) {
|
|
@@ -206828,7 +206906,7 @@ var require_parser_markdown = __commonJS({
|
|
|
206828
206906
|
return Ee.get(e) || {};
|
|
206829
206907
|
}, mr = function(e) {
|
|
206830
206908
|
return Ee.has(e);
|
|
206831
|
-
}) : (Ne =
|
|
206909
|
+
}) : (Ne = os23("state"), ss[Ne] = true, vr = function(e, r) {
|
|
206832
206910
|
if (uu(e, Ne)) throw nu(sn);
|
|
206833
206911
|
return r.facade = e, as(e, Ne, r), r;
|
|
206834
206912
|
}, Ke = function(e) {
|
|
@@ -210717,7 +210795,7 @@ var require_parser_html = __commonJS({
|
|
|
210717
210795
|
return new Ye(false);
|
|
210718
210796
|
};
|
|
210719
210797
|
});
|
|
210720
|
-
var
|
|
210798
|
+
var os23 = S((X2, as) => {
|
|
210721
210799
|
"use strict";
|
|
210722
210800
|
var XD = je(), HD = Ae(), zD = Ie();
|
|
210723
210801
|
as.exports = function(e, r, u) {
|
|
@@ -210726,7 +210804,7 @@ var require_parser_html = __commonJS({
|
|
|
210726
210804
|
};
|
|
210727
210805
|
});
|
|
210728
210806
|
var Ds = S(() => {
|
|
210729
|
-
var WD = ze(), YD = is(), QD =
|
|
210807
|
+
var WD = ze(), YD = is(), QD = os23();
|
|
210730
210808
|
WD({ target: "Object", stat: true }, { fromEntries: function(r) {
|
|
210731
210809
|
var u = {};
|
|
210732
210810
|
return YD(r, function(n, D) {
|
|
@@ -222331,7 +222409,7 @@ var require_prettier = __commonJS({
|
|
|
222331
222409
|
var require_supports_color2 = __commonJS22({
|
|
222332
222410
|
"node_modules/vnopts/node_modules/supports-color/index.js"(exports22, module22) {
|
|
222333
222411
|
"use strict";
|
|
222334
|
-
var
|
|
222412
|
+
var os23 = __require("os");
|
|
222335
222413
|
var hasFlag2 = require_has_flag3();
|
|
222336
222414
|
var env5 = process.env;
|
|
222337
222415
|
var forceColor;
|
|
@@ -222369,7 +222447,7 @@ var require_prettier = __commonJS({
|
|
|
222369
222447
|
}
|
|
222370
222448
|
const min2 = forceColor ? 1 : 0;
|
|
222371
222449
|
if (process.platform === "win32") {
|
|
222372
|
-
const osRelease =
|
|
222450
|
+
const osRelease = os23.release().split(".");
|
|
222373
222451
|
if (Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
222374
222452
|
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
222375
222453
|
}
|
|
@@ -224021,7 +224099,7 @@ var require_prettier = __commonJS({
|
|
|
224021
224099
|
var require_supports_color22 = __commonJS22({
|
|
224022
224100
|
"node_modules/@babel/highlight/node_modules/supports-color/index.js"(exports22, module22) {
|
|
224023
224101
|
"use strict";
|
|
224024
|
-
var
|
|
224102
|
+
var os23 = __require("os");
|
|
224025
224103
|
var hasFlag2 = require_has_flag22();
|
|
224026
224104
|
var env5 = process.env;
|
|
224027
224105
|
var forceColor;
|
|
@@ -224059,7 +224137,7 @@ var require_prettier = __commonJS({
|
|
|
224059
224137
|
}
|
|
224060
224138
|
const min2 = forceColor ? 1 : 0;
|
|
224061
224139
|
if (process.platform === "win32") {
|
|
224062
|
-
const osRelease =
|
|
224140
|
+
const osRelease = os23.release().split(".");
|
|
224063
224141
|
if (Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
224064
224142
|
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
224065
224143
|
}
|
|
@@ -231940,8 +232018,8 @@ ${error.message}`;
|
|
|
231940
232018
|
var require_homedir = __commonJS22({
|
|
231941
232019
|
"node_modules/resolve/lib/homedir.js"(exports22, module22) {
|
|
231942
232020
|
"use strict";
|
|
231943
|
-
var
|
|
231944
|
-
module22.exports =
|
|
232021
|
+
var os23 = __require("os");
|
|
232022
|
+
module22.exports = os23.homedir || function homedir18() {
|
|
231945
232023
|
var home = process.env.HOME;
|
|
231946
232024
|
var user = process.env.LOGNAME || process.env.USER || process.env.LNAME || process.env.USERNAME;
|
|
231947
232025
|
if (process.platform === "win32") {
|
|
@@ -238603,8 +238681,8 @@ ${fromBody}`;
|
|
|
238603
238681
|
});
|
|
238604
238682
|
exports22.DEFAULT_FILE_SYSTEM_ADAPTER = void 0;
|
|
238605
238683
|
var fs40 = __require("fs");
|
|
238606
|
-
var
|
|
238607
|
-
var CPU_COUNT = Math.max(
|
|
238684
|
+
var os23 = __require("os");
|
|
238685
|
+
var CPU_COUNT = Math.max(os23.cpus().length, 1);
|
|
238608
238686
|
exports22.DEFAULT_FILE_SYSTEM_ADAPTER = {
|
|
238609
238687
|
lstat: fs40.lstat,
|
|
238610
238688
|
lstatSync: fs40.lstatSync,
|
|
@@ -283683,7 +283761,7 @@ var require_files = __commonJS({
|
|
|
283683
283761
|
"node_modules/mammoth/lib/docx/files.js"(exports2) {
|
|
283684
283762
|
var fs40 = __require("fs");
|
|
283685
283763
|
var url = __require("url");
|
|
283686
|
-
var
|
|
283764
|
+
var os23 = __require("os");
|
|
283687
283765
|
var dirname10 = __require("path").dirname;
|
|
283688
283766
|
var resolvePath = __require("path").resolve;
|
|
283689
283767
|
var isAbsolutePath = require_path_is_absolute();
|
|
@@ -283725,7 +283803,7 @@ var require_files = __commonJS({
|
|
|
283725
283803
|
var readFile3 = promises.promisify(fs40.readFile.bind(fs40));
|
|
283726
283804
|
function uriToPath(uriString, platform5) {
|
|
283727
283805
|
if (!platform5) {
|
|
283728
|
-
platform5 =
|
|
283806
|
+
platform5 = os23.platform();
|
|
283729
283807
|
}
|
|
283730
283808
|
var uri = url.parse(uriString);
|
|
283731
283809
|
if (isLocalFileUri(uri) || isRelativeUri(uri)) {
|
|
@@ -297228,9 +297306,9 @@ var require_xlsx = __commonJS({
|
|
|
297228
297306
|
cell.isst = blob.read_shift(4);
|
|
297229
297307
|
return cell;
|
|
297230
297308
|
}
|
|
297231
|
-
function write_LabelSst(R, C, v,
|
|
297309
|
+
function write_LabelSst(R, C, v, os23) {
|
|
297232
297310
|
var o = new_buf(10);
|
|
297233
|
-
write_XLSCell(R, C,
|
|
297311
|
+
write_XLSCell(R, C, os23, o);
|
|
297234
297312
|
o.write_shift(4, v);
|
|
297235
297313
|
return o;
|
|
297236
297314
|
}
|
|
@@ -297243,10 +297321,10 @@ var require_xlsx = __commonJS({
|
|
|
297243
297321
|
cell.val = str2;
|
|
297244
297322
|
return cell;
|
|
297245
297323
|
}
|
|
297246
|
-
function write_Label(R, C, v,
|
|
297324
|
+
function write_Label(R, C, v, os23, opts) {
|
|
297247
297325
|
var b8 = !opts || opts.biff == 8;
|
|
297248
297326
|
var o = new_buf(6 + 2 + +b8 + (1 + b8) * v.length);
|
|
297249
|
-
write_XLSCell(R, C,
|
|
297327
|
+
write_XLSCell(R, C, os23, o);
|
|
297250
297328
|
o.write_shift(2, v.length);
|
|
297251
297329
|
if (b8) o.write_shift(1, 1);
|
|
297252
297330
|
o.write_shift((1 + b8) * v.length, v, b8 ? "utf16le" : "sbcs");
|
|
@@ -297400,9 +297478,9 @@ var require_xlsx = __commonJS({
|
|
|
297400
297478
|
cell.t = val === true || val === false ? "b" : "e";
|
|
297401
297479
|
return cell;
|
|
297402
297480
|
}
|
|
297403
|
-
function write_BoolErr(R, C, v,
|
|
297481
|
+
function write_BoolErr(R, C, v, os23, opts, t) {
|
|
297404
297482
|
var o = new_buf(8);
|
|
297405
|
-
write_XLSCell(R, C,
|
|
297483
|
+
write_XLSCell(R, C, os23, o);
|
|
297406
297484
|
write_Bes(v, t, o);
|
|
297407
297485
|
return o;
|
|
297408
297486
|
}
|
|
@@ -297413,9 +297491,9 @@ var require_xlsx = __commonJS({
|
|
|
297413
297491
|
cell.val = xnum;
|
|
297414
297492
|
return cell;
|
|
297415
297493
|
}
|
|
297416
|
-
function write_Number(R, C, v,
|
|
297494
|
+
function write_Number(R, C, v, os23) {
|
|
297417
297495
|
var o = new_buf(14);
|
|
297418
|
-
write_XLSCell(R, C,
|
|
297496
|
+
write_XLSCell(R, C, os23, o);
|
|
297419
297497
|
write_Xnum(v, o);
|
|
297420
297498
|
return o;
|
|
297421
297499
|
}
|
|
@@ -304238,8 +304316,8 @@ var require_xlsx = __commonJS({
|
|
|
304238
304316
|
var cbf = parse_XLSCellParsedFormula(blob, end - blob.l, opts);
|
|
304239
304317
|
return { cell, val: val[0], formula: cbf, shared: flags >> 3 & 1, tt: val[1] };
|
|
304240
304318
|
}
|
|
304241
|
-
function write_Formula(cell, R, C, opts,
|
|
304242
|
-
var o1 = write_XLSCell(R, C,
|
|
304319
|
+
function write_Formula(cell, R, C, opts, os23) {
|
|
304320
|
+
var o1 = write_XLSCell(R, C, os23);
|
|
304243
304321
|
var o2 = write_FormulaValue(cell.v);
|
|
304244
304322
|
var o3 = new_buf(6);
|
|
304245
304323
|
var flags = 1 | 32;
|
|
@@ -305818,8 +305896,8 @@ var require_xlsx = __commonJS({
|
|
|
305818
305896
|
break;
|
|
305819
305897
|
}
|
|
305820
305898
|
var v = writetag("v", escapexml(vv)), o = { r: ref };
|
|
305821
|
-
var
|
|
305822
|
-
if (
|
|
305899
|
+
var os23 = get_cell_style(opts.cellXfs, cell, opts);
|
|
305900
|
+
if (os23 !== 0) o.s = os23;
|
|
305823
305901
|
switch (cell.t) {
|
|
305824
305902
|
case "n":
|
|
305825
305903
|
break;
|
|
@@ -309634,8 +309712,8 @@ var require_xlsx = __commonJS({
|
|
|
309634
309712
|
p = escapexlml(cell.v || "");
|
|
309635
309713
|
break;
|
|
309636
309714
|
}
|
|
309637
|
-
var
|
|
309638
|
-
attr["ss:StyleID"] = "s" + (21 +
|
|
309715
|
+
var os23 = get_cell_style(opts.cellXfs, cell, opts);
|
|
309716
|
+
attr["ss:StyleID"] = "s" + (21 + os23);
|
|
309639
309717
|
attr["ss:Index"] = addr.c + 1;
|
|
309640
309718
|
var _v = cell.v != null ? p : "";
|
|
309641
309719
|
var m = cell.t == "z" ? "" : '<Data ss:Type="' + t + '">' + _v + "</Data>";
|
|
@@ -315470,32 +315548,32 @@ var require_xlsx = __commonJS({
|
|
|
315470
315548
|
});
|
|
315471
315549
|
}
|
|
315472
315550
|
function write_ws_biff8_cell(ba, cell, R, C, opts) {
|
|
315473
|
-
var
|
|
315551
|
+
var os23 = 16 + get_cell_style(opts.cellXfs, cell, opts);
|
|
315474
315552
|
if (cell.v == null && !cell.bf) {
|
|
315475
|
-
write_biff_rec(ba, 513, write_XLSCell(R, C,
|
|
315553
|
+
write_biff_rec(ba, 513, write_XLSCell(R, C, os23));
|
|
315476
315554
|
return;
|
|
315477
315555
|
}
|
|
315478
|
-
if (cell.bf) write_biff_rec(ba, 6, write_Formula(cell, R, C, opts,
|
|
315556
|
+
if (cell.bf) write_biff_rec(ba, 6, write_Formula(cell, R, C, opts, os23));
|
|
315479
315557
|
else switch (cell.t) {
|
|
315480
315558
|
case "d":
|
|
315481
315559
|
case "n":
|
|
315482
315560
|
var v = cell.t == "d" ? datenum(parseDate(cell.v)) : cell.v;
|
|
315483
|
-
write_biff_rec(ba, 515, write_Number(R, C, v,
|
|
315561
|
+
write_biff_rec(ba, 515, write_Number(R, C, v, os23, opts));
|
|
315484
315562
|
break;
|
|
315485
315563
|
case "b":
|
|
315486
315564
|
case "e":
|
|
315487
|
-
write_biff_rec(ba, 517, write_BoolErr(R, C, cell.v,
|
|
315565
|
+
write_biff_rec(ba, 517, write_BoolErr(R, C, cell.v, os23, opts, cell.t));
|
|
315488
315566
|
break;
|
|
315489
315567
|
/* TODO: codepage, sst */
|
|
315490
315568
|
case "s":
|
|
315491
315569
|
case "str":
|
|
315492
315570
|
if (opts.bookSST) {
|
|
315493
315571
|
var isst = get_sst_id(opts.Strings, cell.v, opts.revStrings);
|
|
315494
|
-
write_biff_rec(ba, 253, write_LabelSst(R, C, isst,
|
|
315495
|
-
} else write_biff_rec(ba, 516, write_Label(R, C, (cell.v || "").slice(0, 255),
|
|
315572
|
+
write_biff_rec(ba, 253, write_LabelSst(R, C, isst, os23, opts));
|
|
315573
|
+
} else write_biff_rec(ba, 516, write_Label(R, C, (cell.v || "").slice(0, 255), os23, opts));
|
|
315496
315574
|
break;
|
|
315497
315575
|
default:
|
|
315498
|
-
write_biff_rec(ba, 513, write_XLSCell(R, C,
|
|
315576
|
+
write_biff_rec(ba, 513, write_XLSCell(R, C, os23));
|
|
315499
315577
|
}
|
|
315500
315578
|
}
|
|
315501
315579
|
function write_ws_biff8(idx2, opts, wb) {
|
|
@@ -427321,9 +427399,9 @@ import { execSync as execSync3 } from "node:child_process";
|
|
|
427321
427399
|
import { existsSync as existsSync17 } from "node:fs";
|
|
427322
427400
|
import { platform as platform2 } from "node:os";
|
|
427323
427401
|
function findBrowserExecutable() {
|
|
427324
|
-
const
|
|
427402
|
+
const os23 = platform2();
|
|
427325
427403
|
const paths = [];
|
|
427326
|
-
if (
|
|
427404
|
+
if (os23 === "win32") {
|
|
427327
427405
|
const edgePaths = [
|
|
427328
427406
|
"C:\\Program Files\\Microsoft\\Edge\\Application\\msedge.exe",
|
|
427329
427407
|
"C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe"
|
|
@@ -427334,7 +427412,7 @@ function findBrowserExecutable() {
|
|
|
427334
427412
|
process.env["LOCALAPPDATA"] + "\\Google\\Chrome\\Application\\chrome.exe"
|
|
427335
427413
|
];
|
|
427336
427414
|
paths.push(...edgePaths, ...chromePaths);
|
|
427337
|
-
} else if (
|
|
427415
|
+
} else if (os23 === "darwin") {
|
|
427338
427416
|
paths.push("/Applications/Google Chrome.app/Contents/MacOS/Google Chrome", "/Applications/Chromium.app/Contents/MacOS/Chromium", "/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge");
|
|
427339
427417
|
} else {
|
|
427340
427418
|
const binPaths = [
|
|
@@ -431521,7 +431599,7 @@ var init_askUserQuestion = __esm({
|
|
|
431521
431599
|
type: "function",
|
|
431522
431600
|
function: {
|
|
431523
431601
|
name: "askuser-ask_question",
|
|
431524
|
-
description: "Ask the user a question with multiple choice options to clarify requirements. The AI workflow pauses until the user selects an option or provides custom input. Use this when you need user input to continue processing.",
|
|
431602
|
+
description: "Ask the user a question with multiple choice options to clarify requirements. The AI workflow pauses until the user selects an option or provides custom input. Use this when you need user input to continue processing. Supports both single and multiple selection - user can choose one or more options.",
|
|
431525
431603
|
parameters: {
|
|
431526
431604
|
type: "object",
|
|
431527
431605
|
properties: {
|
|
@@ -431534,7 +431612,7 @@ var init_askUserQuestion = __esm({
|
|
|
431534
431612
|
items: {
|
|
431535
431613
|
type: "string"
|
|
431536
431614
|
},
|
|
431537
|
-
description: "Array of option strings for the user to choose from. Should be concise and clear.",
|
|
431615
|
+
description: "Array of option strings for the user to choose from. Should be concise and clear. User can select one or multiple options.",
|
|
431538
431616
|
minItems: 2
|
|
431539
431617
|
}
|
|
431540
431618
|
},
|
|
@@ -434081,6 +434159,7 @@ ${agent.role}`;
|
|
|
434081
434159
|
if (askUserTool && requestUserQuestion) {
|
|
434082
434160
|
let question = "Please select an option:";
|
|
434083
434161
|
let options3 = ["Yes", "No"];
|
|
434162
|
+
let multiSelect = false;
|
|
434084
434163
|
try {
|
|
434085
434164
|
const args2 = JSON.parse(askUserTool.function.arguments);
|
|
434086
434165
|
if (args2.question)
|
|
@@ -434088,11 +434167,14 @@ ${agent.role}`;
|
|
|
434088
434167
|
if (args2.options && Array.isArray(args2.options)) {
|
|
434089
434168
|
options3 = args2.options;
|
|
434090
434169
|
}
|
|
434170
|
+
if (args2.multiSelect === true) {
|
|
434171
|
+
multiSelect = true;
|
|
434172
|
+
}
|
|
434091
434173
|
} catch (error) {
|
|
434092
434174
|
console.error("Failed to parse askuser tool arguments:", error);
|
|
434093
434175
|
}
|
|
434094
|
-
const userAnswer = await requestUserQuestion(question, options3);
|
|
434095
|
-
const answerText = userAnswer.customInput ? `${userAnswer.selected}: ${userAnswer.customInput}` : userAnswer.selected;
|
|
434176
|
+
const userAnswer = await requestUserQuestion(question, options3, multiSelect);
|
|
434177
|
+
const answerText = userAnswer.customInput ? `${Array.isArray(userAnswer.selected) ? userAnswer.selected.join(", ") : userAnswer.selected}: ${userAnswer.customInput}` : Array.isArray(userAnswer.selected) ? userAnswer.selected.join(", ") : userAnswer.selected;
|
|
434096
434178
|
const toolResultMessage = {
|
|
434097
434179
|
role: "tool",
|
|
434098
434180
|
tool_call_id: askUserTool.id,
|
|
@@ -438242,7 +438324,7 @@ var init_userInteractionError = __esm({
|
|
|
438242
438324
|
"dist/utils/ui/userInteractionError.js"() {
|
|
438243
438325
|
"use strict";
|
|
438244
438326
|
UserInteractionNeededError = class extends Error {
|
|
438245
|
-
constructor(question, options3, toolCallId = "") {
|
|
438327
|
+
constructor(question, options3, toolCallId = "", multiSelect = false) {
|
|
438246
438328
|
super("User interaction needed");
|
|
438247
438329
|
Object.defineProperty(this, "question", {
|
|
438248
438330
|
enumerable: true,
|
|
@@ -438262,10 +438344,17 @@ var init_userInteractionError = __esm({
|
|
|
438262
438344
|
writable: true,
|
|
438263
438345
|
value: void 0
|
|
438264
438346
|
});
|
|
438347
|
+
Object.defineProperty(this, "multiSelect", {
|
|
438348
|
+
enumerable: true,
|
|
438349
|
+
configurable: true,
|
|
438350
|
+
writable: true,
|
|
438351
|
+
value: void 0
|
|
438352
|
+
});
|
|
438265
438353
|
this.name = "UserInteractionNeededError";
|
|
438266
438354
|
this.question = question;
|
|
438267
438355
|
this.options = options3;
|
|
438268
438356
|
this.toolCallId = toolCallId;
|
|
438357
|
+
this.multiSelect = multiSelect;
|
|
438269
438358
|
}
|
|
438270
438359
|
};
|
|
438271
438360
|
}
|
|
@@ -438845,7 +438934,7 @@ async function connectAndGetTools(serviceName, server, timeoutMs = 1e4) {
|
|
|
438845
438934
|
logger.debug(`[MCP] Attempting StreamableHTTP connection to ${serviceName}...`);
|
|
438846
438935
|
const headers = {
|
|
438847
438936
|
"Content-Type": "application/json",
|
|
438848
|
-
|
|
438937
|
+
Accept: "application/json, text/event-stream"
|
|
438849
438938
|
};
|
|
438850
438939
|
if (server.env) {
|
|
438851
438940
|
const allEnv = { ...process.env, ...server.env };
|
|
@@ -438988,7 +439077,7 @@ async function getPersistentClient(serviceName, server) {
|
|
|
438988
439077
|
const url = new URL(urlString);
|
|
438989
439078
|
const headers = {
|
|
438990
439079
|
"Content-Type": "application/json",
|
|
438991
|
-
|
|
439080
|
+
Accept: "application/json, text/event-stream"
|
|
438992
439081
|
};
|
|
438993
439082
|
if (allEnv["MCP_API_KEY"]) {
|
|
438994
439083
|
headers["Authorization"] = `Bearer ${allEnv["MCP_API_KEY"]}`;
|
|
@@ -439322,8 +439411,80 @@ AI Tip: Provide searchContent (string) and replaceContent (string).`);
|
|
|
439322
439411
|
} else if (serviceName === "askuser") {
|
|
439323
439412
|
switch (actualToolName) {
|
|
439324
439413
|
case "ask_question":
|
|
439414
|
+
if (!args2.question || typeof args2.question !== "string") {
|
|
439415
|
+
return {
|
|
439416
|
+
content: [
|
|
439417
|
+
{
|
|
439418
|
+
type: "text",
|
|
439419
|
+
text: `Error: "question" parameter must be a non-empty string.
|
|
439420
|
+
|
|
439421
|
+
Received: ${JSON.stringify(args2, null, 2)}
|
|
439422
|
+
|
|
439423
|
+
Please retry with correct parameters.`
|
|
439424
|
+
}
|
|
439425
|
+
],
|
|
439426
|
+
isError: true
|
|
439427
|
+
};
|
|
439428
|
+
}
|
|
439429
|
+
if (!Array.isArray(args2.options)) {
|
|
439430
|
+
return {
|
|
439431
|
+
content: [
|
|
439432
|
+
{
|
|
439433
|
+
type: "text",
|
|
439434
|
+
text: `Error: "options" parameter must be an array of strings.
|
|
439435
|
+
|
|
439436
|
+
Received options: ${JSON.stringify(args2.options)}
|
|
439437
|
+
Type: ${typeof args2.options}
|
|
439438
|
+
|
|
439439
|
+
Please retry with correct parameters. Example:
|
|
439440
|
+
{
|
|
439441
|
+
"question": "Your question here",
|
|
439442
|
+
"options": ["Option 1", "Option 2", "Option 3"]
|
|
439443
|
+
}`
|
|
439444
|
+
}
|
|
439445
|
+
],
|
|
439446
|
+
isError: true
|
|
439447
|
+
};
|
|
439448
|
+
}
|
|
439449
|
+
if (args2.options.length < 2) {
|
|
439450
|
+
return {
|
|
439451
|
+
content: [
|
|
439452
|
+
{
|
|
439453
|
+
type: "text",
|
|
439454
|
+
text: `Error: "options" array must contain at least 2 options.
|
|
439455
|
+
|
|
439456
|
+
Received: ${JSON.stringify(args2.options)}
|
|
439457
|
+
|
|
439458
|
+
Please provide at least 2 options for the user to choose from.`
|
|
439459
|
+
}
|
|
439460
|
+
],
|
|
439461
|
+
isError: true
|
|
439462
|
+
};
|
|
439463
|
+
}
|
|
439464
|
+
const invalidOptions = args2.options.filter((opt) => typeof opt !== "string");
|
|
439465
|
+
if (invalidOptions.length > 0) {
|
|
439466
|
+
return {
|
|
439467
|
+
content: [
|
|
439468
|
+
{
|
|
439469
|
+
type: "text",
|
|
439470
|
+
text: `Error: All options must be strings.
|
|
439471
|
+
|
|
439472
|
+
Invalid options: ${JSON.stringify(invalidOptions)}
|
|
439473
|
+
|
|
439474
|
+
Please ensure all options are strings.`
|
|
439475
|
+
}
|
|
439476
|
+
],
|
|
439477
|
+
isError: true
|
|
439478
|
+
};
|
|
439479
|
+
}
|
|
439325
439480
|
const { UserInteractionNeededError: UserInteractionNeededError2 } = await Promise.resolve().then(() => (init_userInteractionError(), userInteractionError_exports));
|
|
439326
|
-
throw new UserInteractionNeededError2(
|
|
439481
|
+
throw new UserInteractionNeededError2(
|
|
439482
|
+
args2.question,
|
|
439483
|
+
args2.options,
|
|
439484
|
+
"",
|
|
439485
|
+
//toolCallId will be set by executeToolCall
|
|
439486
|
+
false
|
|
439487
|
+
);
|
|
439327
439488
|
default:
|
|
439328
439489
|
throw new Error(`Unknown askuser tool: ${actualToolName}`);
|
|
439329
439490
|
}
|
|
@@ -440787,6 +440948,10 @@ function CodeBaseConfigScreen({ onBack, onSave, inlineMode = false }) {
|
|
|
440787
440948
|
const [embeddingDimensions, setEmbeddingDimensions] = (0, import_react68.useState)(1536);
|
|
440788
440949
|
const [batchMaxLines, setBatchMaxLines] = (0, import_react68.useState)(10);
|
|
440789
440950
|
const [batchConcurrency, setBatchConcurrency] = (0, import_react68.useState)(1);
|
|
440951
|
+
const [chunkingMaxLinesPerChunk, setChunkingMaxLinesPerChunk] = (0, import_react68.useState)(200);
|
|
440952
|
+
const [chunkingMinLinesPerChunk, setChunkingMinLinesPerChunk] = (0, import_react68.useState)(10);
|
|
440953
|
+
const [chunkingMinCharsPerChunk, setChunkingMinCharsPerChunk] = (0, import_react68.useState)(20);
|
|
440954
|
+
const [chunkingOverlapLines, setChunkingOverlapLines] = (0, import_react68.useState)(20);
|
|
440790
440955
|
const [currentField, setCurrentField] = (0, import_react68.useState)("enabled");
|
|
440791
440956
|
const [isEditing, setIsEditing] = (0, import_react68.useState)(false);
|
|
440792
440957
|
const [errors, setErrors] = (0, import_react68.useState)([]);
|
|
@@ -440800,10 +440965,14 @@ function CodeBaseConfigScreen({ onBack, onSave, inlineMode = false }) {
|
|
|
440800
440965
|
"embeddingApiKey",
|
|
440801
440966
|
"embeddingDimensions",
|
|
440802
440967
|
"batchMaxLines",
|
|
440803
|
-
"batchConcurrency"
|
|
440968
|
+
"batchConcurrency",
|
|
440969
|
+
"chunkingMaxLinesPerChunk",
|
|
440970
|
+
"chunkingMinLinesPerChunk",
|
|
440971
|
+
"chunkingMinCharsPerChunk",
|
|
440972
|
+
"chunkingOverlapLines"
|
|
440804
440973
|
];
|
|
440805
440974
|
const embeddingTypeOptions = [
|
|
440806
|
-
{ label: "Jina", value: "jina" },
|
|
440975
|
+
{ label: "Jina & OpenAI", value: "jina" },
|
|
440807
440976
|
{ label: "Ollama", value: "ollama" }
|
|
440808
440977
|
];
|
|
440809
440978
|
const currentFieldIndex = allFields.indexOf(currentField);
|
|
@@ -440822,6 +440991,10 @@ function CodeBaseConfigScreen({ onBack, onSave, inlineMode = false }) {
|
|
|
440822
440991
|
setEmbeddingDimensions(config3.embedding.dimensions);
|
|
440823
440992
|
setBatchMaxLines(config3.batch.maxLines);
|
|
440824
440993
|
setBatchConcurrency(config3.batch.concurrency);
|
|
440994
|
+
setChunkingMaxLinesPerChunk(config3.chunking.maxLinesPerChunk);
|
|
440995
|
+
setChunkingMinLinesPerChunk(config3.chunking.minLinesPerChunk);
|
|
440996
|
+
setChunkingMinCharsPerChunk(config3.chunking.minCharsPerChunk);
|
|
440997
|
+
setChunkingOverlapLines(config3.chunking.overlapLines);
|
|
440825
440998
|
};
|
|
440826
440999
|
const saveConfiguration = () => {
|
|
440827
441000
|
const validationErrors = [];
|
|
@@ -440841,6 +441014,21 @@ function CodeBaseConfigScreen({ onBack, onSave, inlineMode = false }) {
|
|
|
440841
441014
|
if (batchConcurrency <= 0) {
|
|
440842
441015
|
validationErrors.push(t.codebaseConfig.validationConcurrencyPositive);
|
|
440843
441016
|
}
|
|
441017
|
+
if (chunkingMaxLinesPerChunk <= 0) {
|
|
441018
|
+
validationErrors.push(t.codebaseConfig.validationMaxLinesPerChunkPositive);
|
|
441019
|
+
}
|
|
441020
|
+
if (chunkingMinLinesPerChunk <= 0) {
|
|
441021
|
+
validationErrors.push(t.codebaseConfig.validationMinLinesPerChunkPositive);
|
|
441022
|
+
}
|
|
441023
|
+
if (chunkingMinCharsPerChunk <= 0) {
|
|
441024
|
+
validationErrors.push(t.codebaseConfig.validationMinCharsPerChunkPositive);
|
|
441025
|
+
}
|
|
441026
|
+
if (chunkingOverlapLines < 0) {
|
|
441027
|
+
validationErrors.push(t.codebaseConfig.validationOverlapLinesNonNegative);
|
|
441028
|
+
}
|
|
441029
|
+
if (chunkingOverlapLines >= chunkingMaxLinesPerChunk) {
|
|
441030
|
+
validationErrors.push(t.codebaseConfig.validationOverlapLessThanMaxLines);
|
|
441031
|
+
}
|
|
440844
441032
|
}
|
|
440845
441033
|
if (validationErrors.length > 0) {
|
|
440846
441034
|
setErrors(validationErrors);
|
|
@@ -440860,6 +441048,12 @@ function CodeBaseConfigScreen({ onBack, onSave, inlineMode = false }) {
|
|
|
440860
441048
|
batch: {
|
|
440861
441049
|
maxLines: batchMaxLines,
|
|
440862
441050
|
concurrency: batchConcurrency
|
|
441051
|
+
},
|
|
441052
|
+
chunking: {
|
|
441053
|
+
maxLinesPerChunk: chunkingMaxLinesPerChunk,
|
|
441054
|
+
minLinesPerChunk: chunkingMinLinesPerChunk,
|
|
441055
|
+
minCharsPerChunk: chunkingMinCharsPerChunk,
|
|
441056
|
+
overlapLines: chunkingOverlapLines
|
|
440863
441057
|
}
|
|
440864
441058
|
};
|
|
440865
441059
|
saveCodebaseConfig(config3);
|
|
@@ -440948,9 +441142,7 @@ function CodeBaseConfigScreen({ onBack, onSave, inlineMode = false }) {
|
|
|
440948
441142
|
{ color: theme14.colors.menuSecondary },
|
|
440949
441143
|
((_a21 = embeddingTypeOptions.find((opt) => opt.value === embeddingType)) == null ? void 0 : _a21.label) || t.codebaseConfig.notSet,
|
|
440950
441144
|
" ",
|
|
440951
|
-
|
|
440952
|
-
t.codebaseConfig.toggleHint,
|
|
440953
|
-
")"
|
|
441145
|
+
t.codebaseConfig.toggleHint
|
|
440954
441146
|
)
|
|
440955
441147
|
)
|
|
440956
441148
|
);
|
|
@@ -441119,6 +441311,126 @@ function CodeBaseConfigScreen({ onBack, onSave, inlineMode = false }) {
|
|
|
441119
441311
|
import_react68.default.createElement(Text, { color: theme14.colors.menuSecondary }, batchConcurrency)
|
|
441120
441312
|
)
|
|
441121
441313
|
);
|
|
441314
|
+
case "chunkingMaxLinesPerChunk":
|
|
441315
|
+
return import_react68.default.createElement(
|
|
441316
|
+
Box_default,
|
|
441317
|
+
{ key: field, flexDirection: "column" },
|
|
441318
|
+
import_react68.default.createElement(
|
|
441319
|
+
Text,
|
|
441320
|
+
{ color: isActive ? theme14.colors.menuSelected : theme14.colors.menuNormal },
|
|
441321
|
+
isActive ? "\u276F " : " ",
|
|
441322
|
+
t.codebaseConfig.chunkingMaxLinesPerChunk
|
|
441323
|
+
),
|
|
441324
|
+
isCurrentlyEditing && import_react68.default.createElement(
|
|
441325
|
+
Box_default,
|
|
441326
|
+
{ marginLeft: 3 },
|
|
441327
|
+
import_react68.default.createElement(
|
|
441328
|
+
Text,
|
|
441329
|
+
{ color: theme14.colors.menuInfo },
|
|
441330
|
+
import_react68.default.createElement(build_default2, { value: chunkingMaxLinesPerChunk.toString(), onChange: (value) => {
|
|
441331
|
+
const num = parseInt(stripFocusArtifacts4(value) || "0");
|
|
441332
|
+
if (!isNaN(num)) {
|
|
441333
|
+
setChunkingMaxLinesPerChunk(num);
|
|
441334
|
+
}
|
|
441335
|
+
}, onSubmit: () => setIsEditing(false) })
|
|
441336
|
+
)
|
|
441337
|
+
),
|
|
441338
|
+
!isCurrentlyEditing && import_react68.default.createElement(
|
|
441339
|
+
Box_default,
|
|
441340
|
+
{ marginLeft: 3 },
|
|
441341
|
+
import_react68.default.createElement(Text, { color: theme14.colors.menuSecondary }, chunkingMaxLinesPerChunk)
|
|
441342
|
+
)
|
|
441343
|
+
);
|
|
441344
|
+
case "chunkingMinLinesPerChunk":
|
|
441345
|
+
return import_react68.default.createElement(
|
|
441346
|
+
Box_default,
|
|
441347
|
+
{ key: field, flexDirection: "column" },
|
|
441348
|
+
import_react68.default.createElement(
|
|
441349
|
+
Text,
|
|
441350
|
+
{ color: isActive ? theme14.colors.menuSelected : theme14.colors.menuNormal },
|
|
441351
|
+
isActive ? "\u276F " : " ",
|
|
441352
|
+
t.codebaseConfig.chunkingMinLinesPerChunk
|
|
441353
|
+
),
|
|
441354
|
+
isCurrentlyEditing && import_react68.default.createElement(
|
|
441355
|
+
Box_default,
|
|
441356
|
+
{ marginLeft: 3 },
|
|
441357
|
+
import_react68.default.createElement(
|
|
441358
|
+
Text,
|
|
441359
|
+
{ color: theme14.colors.menuInfo },
|
|
441360
|
+
import_react68.default.createElement(build_default2, { value: chunkingMinLinesPerChunk.toString(), onChange: (value) => {
|
|
441361
|
+
const num = parseInt(stripFocusArtifacts4(value) || "0");
|
|
441362
|
+
if (!isNaN(num)) {
|
|
441363
|
+
setChunkingMinLinesPerChunk(num);
|
|
441364
|
+
}
|
|
441365
|
+
}, onSubmit: () => setIsEditing(false) })
|
|
441366
|
+
)
|
|
441367
|
+
),
|
|
441368
|
+
!isCurrentlyEditing && import_react68.default.createElement(
|
|
441369
|
+
Box_default,
|
|
441370
|
+
{ marginLeft: 3 },
|
|
441371
|
+
import_react68.default.createElement(Text, { color: theme14.colors.menuSecondary }, chunkingMinLinesPerChunk)
|
|
441372
|
+
)
|
|
441373
|
+
);
|
|
441374
|
+
case "chunkingMinCharsPerChunk":
|
|
441375
|
+
return import_react68.default.createElement(
|
|
441376
|
+
Box_default,
|
|
441377
|
+
{ key: field, flexDirection: "column" },
|
|
441378
|
+
import_react68.default.createElement(
|
|
441379
|
+
Text,
|
|
441380
|
+
{ color: isActive ? theme14.colors.menuSelected : theme14.colors.menuNormal },
|
|
441381
|
+
isActive ? "\u276F " : " ",
|
|
441382
|
+
t.codebaseConfig.chunkingMinCharsPerChunk
|
|
441383
|
+
),
|
|
441384
|
+
isCurrentlyEditing && import_react68.default.createElement(
|
|
441385
|
+
Box_default,
|
|
441386
|
+
{ marginLeft: 3 },
|
|
441387
|
+
import_react68.default.createElement(
|
|
441388
|
+
Text,
|
|
441389
|
+
{ color: theme14.colors.menuInfo },
|
|
441390
|
+
import_react68.default.createElement(build_default2, { value: chunkingMinCharsPerChunk.toString(), onChange: (value) => {
|
|
441391
|
+
const num = parseInt(stripFocusArtifacts4(value) || "0");
|
|
441392
|
+
if (!isNaN(num)) {
|
|
441393
|
+
setChunkingMinCharsPerChunk(num);
|
|
441394
|
+
}
|
|
441395
|
+
}, onSubmit: () => setIsEditing(false) })
|
|
441396
|
+
)
|
|
441397
|
+
),
|
|
441398
|
+
!isCurrentlyEditing && import_react68.default.createElement(
|
|
441399
|
+
Box_default,
|
|
441400
|
+
{ marginLeft: 3 },
|
|
441401
|
+
import_react68.default.createElement(Text, { color: theme14.colors.menuSecondary }, chunkingMinCharsPerChunk)
|
|
441402
|
+
)
|
|
441403
|
+
);
|
|
441404
|
+
case "chunkingOverlapLines":
|
|
441405
|
+
return import_react68.default.createElement(
|
|
441406
|
+
Box_default,
|
|
441407
|
+
{ key: field, flexDirection: "column" },
|
|
441408
|
+
import_react68.default.createElement(
|
|
441409
|
+
Text,
|
|
441410
|
+
{ color: isActive ? theme14.colors.menuSelected : theme14.colors.menuNormal },
|
|
441411
|
+
isActive ? "\u276F " : " ",
|
|
441412
|
+
t.codebaseConfig.chunkingOverlapLines
|
|
441413
|
+
),
|
|
441414
|
+
isCurrentlyEditing && import_react68.default.createElement(
|
|
441415
|
+
Box_default,
|
|
441416
|
+
{ marginLeft: 3 },
|
|
441417
|
+
import_react68.default.createElement(
|
|
441418
|
+
Text,
|
|
441419
|
+
{ color: theme14.colors.menuInfo },
|
|
441420
|
+
import_react68.default.createElement(build_default2, { value: chunkingOverlapLines.toString(), onChange: (value) => {
|
|
441421
|
+
const num = parseInt(stripFocusArtifacts4(value) || "0");
|
|
441422
|
+
if (!isNaN(num)) {
|
|
441423
|
+
setChunkingOverlapLines(num);
|
|
441424
|
+
}
|
|
441425
|
+
}, onSubmit: () => setIsEditing(false) })
|
|
441426
|
+
)
|
|
441427
|
+
),
|
|
441428
|
+
!isCurrentlyEditing && import_react68.default.createElement(
|
|
441429
|
+
Box_default,
|
|
441430
|
+
{ marginLeft: 3 },
|
|
441431
|
+
import_react68.default.createElement(Text, { color: theme14.colors.menuSecondary }, chunkingOverlapLines)
|
|
441432
|
+
)
|
|
441433
|
+
);
|
|
441122
441434
|
default:
|
|
441123
441435
|
return null;
|
|
441124
441436
|
}
|
|
@@ -449593,33 +449905,51 @@ function AskUserQuestion({ question, options: options3, onAnswer }) {
|
|
|
449593
449905
|
const [hasAnswered, setHasAnswered] = (0, import_react99.useState)(false);
|
|
449594
449906
|
const [showCustomInput, setShowCustomInput] = (0, import_react99.useState)(false);
|
|
449595
449907
|
const [customInput, setCustomInput] = (0, import_react99.useState)("");
|
|
449596
|
-
const [
|
|
449597
|
-
const
|
|
449598
|
-
setSelectedItem(item);
|
|
449599
|
-
}, []);
|
|
449908
|
+
const [highlightedIndex, setHighlightedIndex] = (0, import_react99.useState)(0);
|
|
449909
|
+
const [checkedIndices, setCheckedIndices] = (0, import_react99.useState)(/* @__PURE__ */ new Set());
|
|
449600
449910
|
const CUSTOM_INPUT_VALUE = "custom";
|
|
449911
|
+
const safeOptions = Array.isArray(options3) ? options3 : [];
|
|
449601
449912
|
const items = (0, import_react99.useMemo)(() => [
|
|
449602
|
-
...
|
|
449913
|
+
...safeOptions.map((option, index) => ({
|
|
449603
449914
|
label: option,
|
|
449604
|
-
value: `option-${index}
|
|
449915
|
+
value: `option-${index}`,
|
|
449916
|
+
index
|
|
449605
449917
|
})),
|
|
449606
449918
|
{
|
|
449607
449919
|
label: t.askUser.customInputOption,
|
|
449608
|
-
value: CUSTOM_INPUT_VALUE
|
|
449920
|
+
value: CUSTOM_INPUT_VALUE,
|
|
449921
|
+
index: -1
|
|
449609
449922
|
}
|
|
449610
|
-
], [
|
|
449611
|
-
const
|
|
449612
|
-
if (
|
|
449613
|
-
|
|
449614
|
-
|
|
449615
|
-
|
|
449616
|
-
|
|
449617
|
-
|
|
449618
|
-
|
|
449619
|
-
|
|
449620
|
-
|
|
449923
|
+
], [safeOptions, t.askUser.customInputOption]);
|
|
449924
|
+
const handleSubmit = (0, import_react99.useCallback)(() => {
|
|
449925
|
+
if (hasAnswered)
|
|
449926
|
+
return;
|
|
449927
|
+
const currentItem = items[highlightedIndex];
|
|
449928
|
+
if (!currentItem)
|
|
449929
|
+
return;
|
|
449930
|
+
if (currentItem.value === CUSTOM_INPUT_VALUE) {
|
|
449931
|
+
setShowCustomInput(true);
|
|
449932
|
+
return;
|
|
449933
|
+
}
|
|
449934
|
+
const selectedOptions = Array.from(checkedIndices).sort((a, b) => a - b).map((idx2) => safeOptions[idx2]).filter(Boolean);
|
|
449935
|
+
setHasAnswered(true);
|
|
449936
|
+
if (selectedOptions.length > 0) {
|
|
449937
|
+
onAnswer({
|
|
449938
|
+
selected: selectedOptions
|
|
449939
|
+
});
|
|
449940
|
+
} else {
|
|
449941
|
+
onAnswer({
|
|
449942
|
+
selected: currentItem.label
|
|
449943
|
+
});
|
|
449621
449944
|
}
|
|
449622
|
-
}, [
|
|
449945
|
+
}, [
|
|
449946
|
+
hasAnswered,
|
|
449947
|
+
items,
|
|
449948
|
+
highlightedIndex,
|
|
449949
|
+
checkedIndices,
|
|
449950
|
+
safeOptions,
|
|
449951
|
+
onAnswer
|
|
449952
|
+
]);
|
|
449623
449953
|
const handleCustomInputSubmit = (0, import_react99.useCallback)(() => {
|
|
449624
449954
|
if (!hasAnswered && customInput.trim()) {
|
|
449625
449955
|
setHasAnswered(true);
|
|
@@ -449629,18 +449959,55 @@ function AskUserQuestion({ question, options: options3, onAnswer }) {
|
|
|
449629
449959
|
});
|
|
449630
449960
|
}
|
|
449631
449961
|
}, [hasAnswered, customInput, onAnswer, t.askUser.customInputLabel]);
|
|
449632
|
-
|
|
449962
|
+
const toggleCheck = (0, import_react99.useCallback)((index) => {
|
|
449963
|
+
setCheckedIndices((prev) => {
|
|
449964
|
+
const newSet = new Set(prev);
|
|
449965
|
+
if (newSet.has(index)) {
|
|
449966
|
+
newSet.delete(index);
|
|
449967
|
+
} else {
|
|
449968
|
+
newSet.add(index);
|
|
449969
|
+
}
|
|
449970
|
+
return newSet;
|
|
449971
|
+
});
|
|
449972
|
+
}, []);
|
|
449973
|
+
use_input_default((input2, key) => {
|
|
449633
449974
|
if (showCustomInput || hasAnswered) {
|
|
449634
449975
|
return;
|
|
449635
449976
|
}
|
|
449977
|
+
if (key.upArrow || input2 === "k") {
|
|
449978
|
+
setHighlightedIndex((prev) => prev > 0 ? prev - 1 : items.length - 1);
|
|
449979
|
+
return;
|
|
449980
|
+
}
|
|
449981
|
+
if (key.downArrow || input2 === "j") {
|
|
449982
|
+
setHighlightedIndex((prev) => prev < items.length - 1 ? prev + 1 : 0);
|
|
449983
|
+
return;
|
|
449984
|
+
}
|
|
449985
|
+
if (input2 === " ") {
|
|
449986
|
+
const currentItem = items[highlightedIndex];
|
|
449987
|
+
if (currentItem && currentItem.value !== CUSTOM_INPUT_VALUE) {
|
|
449988
|
+
toggleCheck(currentItem.index);
|
|
449989
|
+
}
|
|
449990
|
+
return;
|
|
449991
|
+
}
|
|
449992
|
+
const num = parseInt(input2, 10);
|
|
449993
|
+
if (!isNaN(num) && num >= 1 && num <= safeOptions.length) {
|
|
449994
|
+
const idx2 = num - 1;
|
|
449995
|
+
toggleCheck(idx2);
|
|
449996
|
+
return;
|
|
449997
|
+
}
|
|
449998
|
+
if (key.return) {
|
|
449999
|
+
handleSubmit();
|
|
450000
|
+
return;
|
|
450001
|
+
}
|
|
449636
450002
|
if (input2 === "e" || input2 === "E") {
|
|
449637
|
-
|
|
450003
|
+
const currentItem = items[highlightedIndex];
|
|
450004
|
+
if (!currentItem)
|
|
449638
450005
|
return;
|
|
449639
450006
|
setShowCustomInput(true);
|
|
449640
|
-
if (
|
|
450007
|
+
if (currentItem.value === CUSTOM_INPUT_VALUE) {
|
|
449641
450008
|
setCustomInput("");
|
|
449642
450009
|
} else {
|
|
449643
|
-
setCustomInput(
|
|
450010
|
+
setCustomInput(currentItem.label);
|
|
449644
450011
|
}
|
|
449645
450012
|
}
|
|
449646
450013
|
}, { isActive: !showCustomInput && !hasAnswered });
|
|
@@ -449650,7 +450017,14 @@ function AskUserQuestion({ question, options: options3, onAnswer }) {
|
|
|
449650
450017
|
import_react99.default.createElement(
|
|
449651
450018
|
Box_default,
|
|
449652
450019
|
{ marginBottom: 1 },
|
|
449653
|
-
import_react99.default.createElement(Text, { bold: true, color: theme14.colors.menuInfo }, t.askUser.header)
|
|
450020
|
+
import_react99.default.createElement(Text, { bold: true, color: theme14.colors.menuInfo }, t.askUser.header),
|
|
450021
|
+
import_react99.default.createElement(
|
|
450022
|
+
Text,
|
|
450023
|
+
{ dimColor: true },
|
|
450024
|
+
" (",
|
|
450025
|
+
t.askUser.multiSelectHint || "\u53EF\u591A\u9009",
|
|
450026
|
+
")"
|
|
450027
|
+
)
|
|
449654
450028
|
),
|
|
449655
450029
|
import_react99.default.createElement(
|
|
449656
450030
|
Box_default,
|
|
@@ -449665,11 +450039,27 @@ function AskUserQuestion({ question, options: options3, onAnswer }) {
|
|
|
449665
450039
|
{ marginBottom: 1 },
|
|
449666
450040
|
import_react99.default.createElement(Text, { dimColor: true }, t.askUser.selectPrompt)
|
|
449667
450041
|
),
|
|
449668
|
-
import_react99.default.createElement(
|
|
450042
|
+
import_react99.default.createElement(Box_default, { flexDirection: "column" }, items.map((item, index) => {
|
|
450043
|
+
const isHighlighted = index === highlightedIndex;
|
|
450044
|
+
const isChecked = item.index >= 0 && checkedIndices.has(item.index);
|
|
450045
|
+
const isCustomInput = item.value === CUSTOM_INPUT_VALUE;
|
|
450046
|
+
return import_react99.default.createElement(
|
|
450047
|
+
Box_default,
|
|
450048
|
+
{ key: item.value },
|
|
450049
|
+
import_react99.default.createElement(Text, { color: isHighlighted ? theme14.colors.menuInfo : void 0 }, isHighlighted ? "\u25B8 " : " "),
|
|
450050
|
+
!isCustomInput && import_react99.default.createElement(Text, { color: isChecked ? theme14.colors.success : void 0, dimColor: !isChecked }, isChecked ? "[\u2713] " : "[ ] "),
|
|
450051
|
+
import_react99.default.createElement(
|
|
450052
|
+
Text,
|
|
450053
|
+
{ color: isHighlighted ? theme14.colors.menuInfo : void 0, dimColor: !isHighlighted },
|
|
450054
|
+
item.index >= 0 ? `${item.index + 1}. ` : "",
|
|
450055
|
+
item.label
|
|
450056
|
+
)
|
|
450057
|
+
);
|
|
450058
|
+
})),
|
|
449669
450059
|
import_react99.default.createElement(
|
|
449670
450060
|
Box_default,
|
|
449671
450061
|
{ marginTop: 1 },
|
|
449672
|
-
import_react99.default.createElement(Text, { dimColor: true }, t.askUser.
|
|
450062
|
+
import_react99.default.createElement(Text, { dimColor: true }, t.askUser.multiSelectKeyboardHints || "\u2191\u2193 \u79FB\u52A8 | \u7A7A\u683C \u5207\u6362 | 1-9 \u5FEB\u901F\u5207\u6362 | \u56DE\u8F66 \u786E\u8BA4 | e \u7F16\u8F91")
|
|
449673
450063
|
)
|
|
449674
450064
|
) : import_react99.default.createElement(
|
|
449675
450065
|
Box_default,
|
|
@@ -449695,7 +450085,6 @@ var init_AskUserQuestion = __esm({
|
|
|
449695
450085
|
import_react99 = __toESM(require_react(), 1);
|
|
449696
450086
|
await init_build2();
|
|
449697
450087
|
await init_build5();
|
|
449698
|
-
await init_ScrollableSelectInput();
|
|
449699
450088
|
init_ThemeContext();
|
|
449700
450089
|
init_i18n();
|
|
449701
450090
|
}
|
|
@@ -468068,7 +468457,7 @@ var require_has_flag2 = __commonJS({
|
|
|
468068
468457
|
var require_supports_colors2 = __commonJS({
|
|
468069
468458
|
"node_modules/@colors/colors/lib/system/supports-colors.js"(exports2, module2) {
|
|
468070
468459
|
"use strict";
|
|
468071
|
-
var
|
|
468460
|
+
var os23 = __require("os");
|
|
468072
468461
|
var hasFlag2 = require_has_flag2();
|
|
468073
468462
|
var env5 = process.env;
|
|
468074
468463
|
var forceColor = void 0;
|
|
@@ -468106,7 +468495,7 @@ var require_supports_colors2 = __commonJS({
|
|
|
468106
468495
|
}
|
|
468107
468496
|
var min2 = forceColor ? 1 : 0;
|
|
468108
468497
|
if (process.platform === "win32") {
|
|
468109
|
-
var osRelease =
|
|
468498
|
+
var osRelease = os23.release().split(".");
|
|
468110
468499
|
if (Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
468111
468500
|
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
468112
468501
|
}
|
|
@@ -528107,8 +528496,8 @@ async function executeToolCall(toolCall, abortSignal, onTokenUpdate, onSubAgentM
|
|
|
528107
528496
|
const { UserInteractionNeededError: UserInteractionNeededError2 } = await Promise.resolve().then(() => (init_userInteractionError(), userInteractionError_exports));
|
|
528108
528497
|
if (error instanceof UserInteractionNeededError2) {
|
|
528109
528498
|
if (onUserInteractionNeeded) {
|
|
528110
|
-
const response = await onUserInteractionNeeded(error.question, error.options);
|
|
528111
|
-
const answerText = response.customInput ? `${response.selected}: ${response.customInput}` : response.selected;
|
|
528499
|
+
const response = await onUserInteractionNeeded(error.question, error.options, error.multiSelect);
|
|
528500
|
+
const answerText = response.customInput ? `${Array.isArray(response.selected) ? response.selected.join(", ") : response.selected}: ${response.customInput}` : Array.isArray(response.selected) ? response.selected.join(", ") : response.selected;
|
|
528112
528501
|
result2 = {
|
|
528113
528502
|
tool_call_id: toolCall.id,
|
|
528114
528503
|
role: "tool",
|
|
@@ -528871,6 +529260,7 @@ var require_ignore = __commonJS({
|
|
|
528871
529260
|
import fs36 from "fs/promises";
|
|
528872
529261
|
import fssync from "fs";
|
|
528873
529262
|
import path44 from "path";
|
|
529263
|
+
import os20 from "os";
|
|
528874
529264
|
import crypto4 from "crypto";
|
|
528875
529265
|
var import_ignore, HashBasedSnapshotManager, hashBasedSnapshotManager;
|
|
528876
529266
|
var init_hashBasedSnapshot = __esm({
|
|
@@ -528878,6 +529268,7 @@ var init_hashBasedSnapshot = __esm({
|
|
|
528878
529268
|
"use strict";
|
|
528879
529269
|
import_ignore = __toESM(require_ignore(), 1);
|
|
528880
529270
|
init_logger();
|
|
529271
|
+
init_projectUtils();
|
|
528881
529272
|
HashBasedSnapshotManager = class {
|
|
528882
529273
|
constructor() {
|
|
528883
529274
|
Object.defineProperty(this, "snapshotsDir", {
|
|
@@ -528898,7 +529289,8 @@ var init_hashBasedSnapshot = __esm({
|
|
|
528898
529289
|
writable: true,
|
|
528899
529290
|
value: void 0
|
|
528900
529291
|
});
|
|
528901
|
-
|
|
529292
|
+
const projectId = getProjectId();
|
|
529293
|
+
this.snapshotsDir = path44.join(os20.homedir(), ".snow", "snapshots", projectId);
|
|
528902
529294
|
this.ignoreFilter = (0, import_ignore.default)();
|
|
528903
529295
|
this.loadIgnorePatterns();
|
|
528904
529296
|
}
|
|
@@ -528918,9 +529310,9 @@ var init_hashBasedSnapshot = __esm({
|
|
|
528918
529310
|
}
|
|
528919
529311
|
}
|
|
528920
529312
|
/**
|
|
528921
|
-
* Scan directory recursively and collect file states
|
|
529313
|
+
* Scan directory recursively and collect file states (metadata only, no content)
|
|
528922
529314
|
*/
|
|
528923
|
-
async scanDirectory(dirPath, workspaceRoot, fileStates) {
|
|
529315
|
+
async scanDirectory(dirPath, workspaceRoot, fileStates, includeContent = false) {
|
|
528924
529316
|
try {
|
|
528925
529317
|
const entries = await fs36.readdir(dirPath, { withFileTypes: true });
|
|
528926
529318
|
for (const entry of entries) {
|
|
@@ -528930,19 +529322,26 @@ var init_hashBasedSnapshot = __esm({
|
|
|
528930
529322
|
continue;
|
|
528931
529323
|
}
|
|
528932
529324
|
if (entry.isDirectory()) {
|
|
528933
|
-
await this.scanDirectory(fullPath, workspaceRoot, fileStates);
|
|
529325
|
+
await this.scanDirectory(fullPath, workspaceRoot, fileStates, includeContent);
|
|
528934
529326
|
} else if (entry.isFile()) {
|
|
528935
529327
|
try {
|
|
528936
529328
|
const stats = await fs36.stat(fullPath);
|
|
528937
|
-
|
|
528938
|
-
|
|
529329
|
+
let content = "";
|
|
529330
|
+
let hash = "";
|
|
529331
|
+
if (includeContent) {
|
|
529332
|
+
content = await fs36.readFile(fullPath, "utf-8");
|
|
529333
|
+
hash = crypto4.createHash("sha256").update(content).digest("hex");
|
|
529334
|
+
} else {
|
|
529335
|
+
const buffer = await fs36.readFile(fullPath);
|
|
529336
|
+
hash = crypto4.createHash("sha256").update(buffer).digest("hex");
|
|
529337
|
+
}
|
|
528939
529338
|
fileStates.set(relativePath, {
|
|
528940
529339
|
path: relativePath,
|
|
528941
529340
|
hash,
|
|
528942
529341
|
size: stats.size,
|
|
528943
529342
|
mtime: stats.mtimeMs,
|
|
528944
|
-
content
|
|
528945
|
-
//
|
|
529343
|
+
content: includeContent ? content : ""
|
|
529344
|
+
// Only store content if requested
|
|
528946
529345
|
});
|
|
528947
529346
|
} catch (error) {
|
|
528948
529347
|
}
|
|
@@ -528977,7 +529376,8 @@ var init_hashBasedSnapshot = __esm({
|
|
|
528977
529376
|
*/
|
|
528978
529377
|
async createSnapshot(sessionId, messageIndex, workspaceRoot = process.cwd()) {
|
|
528979
529378
|
const beforeStateMap = await this.scanWorkspace(workspaceRoot);
|
|
528980
|
-
|
|
529379
|
+
const snapshotKey = `${sessionId}:${messageIndex}`;
|
|
529380
|
+
this.activeSnapshots.set(snapshotKey, {
|
|
528981
529381
|
metadata: {
|
|
528982
529382
|
sessionId,
|
|
528983
529383
|
messageIndex,
|
|
@@ -528987,25 +529387,31 @@ var init_hashBasedSnapshot = __esm({
|
|
|
528987
529387
|
},
|
|
528988
529388
|
beforeStateMap
|
|
528989
529389
|
});
|
|
528990
|
-
logger.info(`[Snapshot] Created snapshot for message ${messageIndex}`);
|
|
529390
|
+
logger.info(`[Snapshot] Created snapshot for session ${sessionId} message ${messageIndex}`);
|
|
528991
529391
|
}
|
|
528992
529392
|
/**
|
|
528993
529393
|
* Commit snapshot after message processing
|
|
528994
529394
|
* Compares current workspace state with snapshot and saves changes
|
|
528995
|
-
* @param
|
|
529395
|
+
* @param sessionId The session ID (required for session isolation)
|
|
529396
|
+
* @param messageIndex The message index to commit (if not provided, commits the oldest snapshot for this session)
|
|
528996
529397
|
* @returns Object with fileCount and messageIndex, or null if no active snapshot
|
|
528997
529398
|
*/
|
|
528998
|
-
async commitSnapshot(messageIndex) {
|
|
529399
|
+
async commitSnapshot(sessionId, messageIndex) {
|
|
528999
529400
|
if (messageIndex === void 0) {
|
|
529000
529401
|
const keys2 = Array.from(this.activeSnapshots.keys());
|
|
529001
|
-
|
|
529402
|
+
const sessionKeys = keys2.filter((key) => key.startsWith(`${sessionId}:`)).map((key) => {
|
|
529403
|
+
const parts = key.split(":");
|
|
529404
|
+
return parseInt(parts[1] || "0", 10);
|
|
529405
|
+
}).filter((index) => !isNaN(index));
|
|
529406
|
+
if (sessionKeys.length === 0) {
|
|
529002
529407
|
return null;
|
|
529003
529408
|
}
|
|
529004
|
-
messageIndex = Math.min(...
|
|
529409
|
+
messageIndex = Math.min(...sessionKeys);
|
|
529005
529410
|
}
|
|
529006
|
-
const
|
|
529411
|
+
const snapshotKey = `${sessionId}:${messageIndex}`;
|
|
529412
|
+
const snapshot = this.activeSnapshots.get(snapshotKey);
|
|
529007
529413
|
if (!snapshot) {
|
|
529008
|
-
logger.warn(`[Snapshot] No active snapshot found for message ${messageIndex}`);
|
|
529414
|
+
logger.warn(`[Snapshot] No active snapshot found for session ${sessionId} message ${messageIndex}`);
|
|
529009
529415
|
return null;
|
|
529010
529416
|
}
|
|
529011
529417
|
const { metadata, beforeStateMap } = snapshot;
|
|
@@ -529033,21 +529439,25 @@ var init_hashBasedSnapshot = __esm({
|
|
|
529033
529439
|
});
|
|
529034
529440
|
}
|
|
529035
529441
|
} else if (beforeState.hash !== afterState.hash) {
|
|
529036
|
-
|
|
529037
|
-
|
|
529038
|
-
|
|
529039
|
-
|
|
529040
|
-
|
|
529041
|
-
|
|
529042
|
-
|
|
529442
|
+
try {
|
|
529443
|
+
const content = await fs36.readFile(fullPath, "utf-8");
|
|
529444
|
+
changedFiles.push({
|
|
529445
|
+
path: relativePath,
|
|
529446
|
+
content,
|
|
529447
|
+
existed: true,
|
|
529448
|
+
hash: beforeState.hash
|
|
529449
|
+
});
|
|
529450
|
+
} catch (error) {
|
|
529451
|
+
logger.warn(`Failed to read modified file ${relativePath}:`, error);
|
|
529452
|
+
}
|
|
529043
529453
|
}
|
|
529044
529454
|
}
|
|
529045
529455
|
for (const [relativePath, afterState] of afterStateMap) {
|
|
529046
529456
|
if (!beforeStateMap.has(relativePath)) {
|
|
529047
529457
|
changedFiles.push({
|
|
529048
529458
|
path: relativePath,
|
|
529049
|
-
content:
|
|
529050
|
-
//
|
|
529459
|
+
content: null,
|
|
529460
|
+
// No need to store content for new files
|
|
529051
529461
|
existed: false,
|
|
529052
529462
|
hash: afterState.hash
|
|
529053
529463
|
});
|
|
@@ -529056,11 +529466,11 @@ var init_hashBasedSnapshot = __esm({
|
|
|
529056
529466
|
if (changedFiles.length > 0) {
|
|
529057
529467
|
metadata.backups = changedFiles;
|
|
529058
529468
|
await this.saveSnapshotMetadata(metadata);
|
|
529059
|
-
logger.info(`[Snapshot] Committed: ${changedFiles.length} files changed for message ${messageIndex}`);
|
|
529469
|
+
logger.info(`[Snapshot] Committed: ${changedFiles.length} files changed for session ${sessionId} message ${messageIndex}`);
|
|
529060
529470
|
} else {
|
|
529061
|
-
logger.info(`[Snapshot] No changes detected for message ${messageIndex}`);
|
|
529471
|
+
logger.info(`[Snapshot] No changes detected for session ${sessionId} message ${messageIndex}`);
|
|
529062
529472
|
}
|
|
529063
|
-
this.activeSnapshots.delete(
|
|
529473
|
+
this.activeSnapshots.delete(snapshotKey);
|
|
529064
529474
|
return { fileCount: changedFiles.length, messageIndex };
|
|
529065
529475
|
}
|
|
529066
529476
|
/**
|
|
@@ -529124,32 +529534,36 @@ var init_hashBasedSnapshot = __esm({
|
|
|
529124
529534
|
}
|
|
529125
529535
|
/**
|
|
529126
529536
|
* Rollback to a specific message index
|
|
529537
|
+
* Uses streaming approach to minimize memory usage
|
|
529127
529538
|
*/
|
|
529128
529539
|
async rollbackToMessageIndex(sessionId, targetMessageIndex, selectedFiles) {
|
|
529129
529540
|
await this.ensureSnapshotsDir();
|
|
529130
529541
|
try {
|
|
529131
529542
|
const files = await fs36.readdir(this.snapshotsDir);
|
|
529132
|
-
const
|
|
529543
|
+
const snapshotFiles = [];
|
|
529133
529544
|
for (const file of files) {
|
|
529134
529545
|
if (file.startsWith(sessionId) && file.endsWith(".json")) {
|
|
529135
529546
|
const snapshotPath = path44.join(this.snapshotsDir, file);
|
|
529136
529547
|
const content = await fs36.readFile(snapshotPath, "utf-8");
|
|
529137
529548
|
const metadata = JSON.parse(content);
|
|
529138
|
-
|
|
529139
|
-
|
|
529140
|
-
|
|
529141
|
-
|
|
529142
|
-
|
|
529549
|
+
if (metadata.messageIndex >= targetMessageIndex) {
|
|
529550
|
+
snapshotFiles.push({
|
|
529551
|
+
messageIndex: metadata.messageIndex,
|
|
529552
|
+
path: snapshotPath
|
|
529553
|
+
});
|
|
529554
|
+
}
|
|
529143
529555
|
}
|
|
529144
529556
|
}
|
|
529145
|
-
|
|
529557
|
+
snapshotFiles.sort((a, b) => b.messageIndex - a.messageIndex);
|
|
529146
529558
|
let totalFilesRolledBack = 0;
|
|
529147
|
-
for (const
|
|
529148
|
-
|
|
529559
|
+
for (const snapshotFile of snapshotFiles) {
|
|
529560
|
+
const content = await fs36.readFile(snapshotFile.path, "utf-8");
|
|
529561
|
+
const metadata = JSON.parse(content);
|
|
529562
|
+
for (const backup of metadata.backups) {
|
|
529149
529563
|
if (selectedFiles && selectedFiles.length > 0 && !selectedFiles.includes(backup.path)) {
|
|
529150
529564
|
continue;
|
|
529151
529565
|
}
|
|
529152
|
-
const fullPath = path44.join(
|
|
529566
|
+
const fullPath = path44.join(metadata.workspaceRoot, backup.path);
|
|
529153
529567
|
try {
|
|
529154
529568
|
if (backup.existed && backup.content !== null) {
|
|
529155
529569
|
await fs36.writeFile(fullPath, backup.content, "utf-8");
|
|
@@ -529653,21 +530067,21 @@ Create a detailed summary following this structure:
|
|
|
529653
530067
|
import { exec as exec5 } from "child_process";
|
|
529654
530068
|
import { promisify } from "util";
|
|
529655
530069
|
import * as path45 from "path";
|
|
529656
|
-
import * as
|
|
530070
|
+
import * as os21 from "os";
|
|
529657
530071
|
async function showSaveDialog(defaultFilename = "export.txt", title = "Save File") {
|
|
529658
|
-
const platform5 =
|
|
530072
|
+
const platform5 = os21.platform();
|
|
529659
530073
|
try {
|
|
529660
530074
|
if (platform5 === "darwin") {
|
|
529661
|
-
const defaultPath = path45.join(
|
|
530075
|
+
const defaultPath = path45.join(os21.homedir(), "Downloads", defaultFilename);
|
|
529662
530076
|
const script = `
|
|
529663
530077
|
set defaultPath to POSIX file "${defaultPath}"
|
|
529664
|
-
set saveFile to choose file name with prompt "${title}" default location (POSIX file "${
|
|
530078
|
+
set saveFile to choose file name with prompt "${title}" default location (POSIX file "${os21.homedir()}/Downloads") default name "${defaultFilename}"
|
|
529665
530079
|
return POSIX path of saveFile
|
|
529666
530080
|
`;
|
|
529667
530081
|
const { stdout } = await execAsync(`osascript -e '${script.replace(/'/g, "'\\''")}'`);
|
|
529668
530082
|
return stdout.trim();
|
|
529669
530083
|
} else if (platform5 === "win32") {
|
|
529670
|
-
const downloadsPath = path45.join(
|
|
530084
|
+
const downloadsPath = path45.join(os21.homedir(), "Downloads").replace(/\\/g, "\\\\");
|
|
529671
530085
|
const psScript = [
|
|
529672
530086
|
"Add-Type -AssemblyName System.Windows.Forms;",
|
|
529673
530087
|
"$dialog = New-Object System.Windows.Forms.SaveFileDialog;",
|
|
@@ -529683,12 +530097,12 @@ async function showSaveDialog(defaultFilename = "export.txt", title = "Save File
|
|
|
529683
530097
|
return result2 || null;
|
|
529684
530098
|
} else {
|
|
529685
530099
|
try {
|
|
529686
|
-
const defaultPath = path45.join(
|
|
530100
|
+
const defaultPath = path45.join(os21.homedir(), "Downloads", defaultFilename);
|
|
529687
530101
|
const { stdout } = await execAsync(`zenity --file-selection --save --title="${title}" --filename="${defaultPath}" --confirm-overwrite`);
|
|
529688
530102
|
return stdout.trim();
|
|
529689
530103
|
} catch (error) {
|
|
529690
530104
|
try {
|
|
529691
|
-
const defaultPath = path45.join(
|
|
530105
|
+
const defaultPath = path45.join(os21.homedir(), "Downloads", defaultFilename);
|
|
529692
530106
|
const { stdout } = await execAsync(`kdialog --getsavefilename "${defaultPath}" "*.*|All Files" --title "${title}"`);
|
|
529693
530107
|
return stdout.trim();
|
|
529694
530108
|
} catch {
|
|
@@ -529701,7 +530115,7 @@ async function showSaveDialog(defaultFilename = "export.txt", title = "Save File
|
|
|
529701
530115
|
}
|
|
529702
530116
|
}
|
|
529703
530117
|
function isFileDialogSupported() {
|
|
529704
|
-
const platform5 =
|
|
530118
|
+
const platform5 = os21.platform();
|
|
529705
530119
|
return platform5 === "darwin" || platform5 === "win32" || platform5 === "linux";
|
|
529706
530120
|
}
|
|
529707
530121
|
var execAsync;
|
|
@@ -530552,6 +530966,8 @@ async function handleConversationWithTools(options3) {
|
|
|
530552
530966
|
let reasoningAccumulator = "";
|
|
530553
530967
|
let chunkCount = 0;
|
|
530554
530968
|
let currentTokenCount = 0;
|
|
530969
|
+
let lastTokenUpdateTime = 0;
|
|
530970
|
+
const TOKEN_UPDATE_INTERVAL = 100;
|
|
530555
530971
|
const currentSession2 = sessionManager.getCurrentSession();
|
|
530556
530972
|
const cacheKey = currentSession2 == null ? void 0 : currentSession2.id;
|
|
530557
530973
|
const onRetry = (error, attempt, nextDelay) => {
|
|
@@ -530631,7 +531047,11 @@ async function handleConversationWithTools(options3) {
|
|
|
530631
531047
|
try {
|
|
530632
531048
|
const deltaTokens = encoder.encode(chunk2.delta);
|
|
530633
531049
|
currentTokenCount += deltaTokens.length;
|
|
530634
|
-
|
|
531050
|
+
const now = Date.now();
|
|
531051
|
+
if (now - lastTokenUpdateTime >= TOKEN_UPDATE_INTERVAL) {
|
|
531052
|
+
setStreamTokenCount(currentTokenCount);
|
|
531053
|
+
lastTokenUpdateTime = now;
|
|
531054
|
+
}
|
|
530635
531055
|
} catch (e) {
|
|
530636
531056
|
}
|
|
530637
531057
|
} else if (chunk2.type === "content" && chunk2.content) {
|
|
@@ -530640,7 +531060,11 @@ async function handleConversationWithTools(options3) {
|
|
|
530640
531060
|
try {
|
|
530641
531061
|
const deltaTokens = encoder.encode(chunk2.content);
|
|
530642
531062
|
currentTokenCount += deltaTokens.length;
|
|
530643
|
-
|
|
531063
|
+
const now = Date.now();
|
|
531064
|
+
if (now - lastTokenUpdateTime >= TOKEN_UPDATE_INTERVAL) {
|
|
531065
|
+
setStreamTokenCount(currentTokenCount);
|
|
531066
|
+
lastTokenUpdateTime = now;
|
|
531067
|
+
}
|
|
530644
531068
|
} catch (e) {
|
|
530645
531069
|
}
|
|
530646
531070
|
} else if (chunk2.type === "tool_call_delta" && chunk2.delta) {
|
|
@@ -530649,7 +531073,11 @@ async function handleConversationWithTools(options3) {
|
|
|
530649
531073
|
try {
|
|
530650
531074
|
const deltaTokens = encoder.encode(chunk2.delta);
|
|
530651
531075
|
currentTokenCount += deltaTokens.length;
|
|
530652
|
-
|
|
531076
|
+
const now = Date.now();
|
|
531077
|
+
if (now - lastTokenUpdateTime >= TOKEN_UPDATE_INTERVAL) {
|
|
531078
|
+
setStreamTokenCount(currentTokenCount);
|
|
531079
|
+
lastTokenUpdateTime = now;
|
|
531080
|
+
}
|
|
530653
531081
|
} catch (e) {
|
|
530654
531082
|
}
|
|
530655
531083
|
} else if (chunk2.type === "tool_calls" && chunk2.tool_calls) {
|
|
@@ -531141,8 +531569,8 @@ async function handleConversationWithTools(options3) {
|
|
|
531141
531569
|
isToolAutoApproved,
|
|
531142
531570
|
yoloMode,
|
|
531143
531571
|
addToAlwaysApproved,
|
|
531144
|
-
|
|
531145
|
-
async (question, options4) => {
|
|
531572
|
+
//添加 onUserInteractionNeeded 回调用于子代理 askuser 工具
|
|
531573
|
+
async (question, options4, multiSelect) => {
|
|
531146
531574
|
return await requestUserQuestion(question, options4, {
|
|
531147
531575
|
id: "fake-tool-call",
|
|
531148
531576
|
type: "function",
|
|
@@ -531150,7 +531578,7 @@ async function handleConversationWithTools(options3) {
|
|
|
531150
531578
|
name: "askuser",
|
|
531151
531579
|
arguments: "{}"
|
|
531152
531580
|
}
|
|
531153
|
-
});
|
|
531581
|
+
}, multiSelect);
|
|
531154
531582
|
}
|
|
531155
531583
|
);
|
|
531156
531584
|
if (controller.signal.aborted) {
|
|
@@ -531517,13 +531945,13 @@ async function handleConversationWithTools(options3) {
|
|
|
531517
531945
|
if (options3.setIsStreaming) {
|
|
531518
531946
|
options3.setIsStreaming(false);
|
|
531519
531947
|
}
|
|
531520
|
-
|
|
531521
|
-
|
|
531522
|
-
|
|
531523
|
-
|
|
531524
|
-
|
|
531525
|
-
|
|
531526
|
-
if (
|
|
531948
|
+
const session2 = sessionManager.getCurrentSession();
|
|
531949
|
+
if (session2) {
|
|
531950
|
+
while (true) {
|
|
531951
|
+
const result2 = await hashBasedSnapshotManager.commitSnapshot(session2.id);
|
|
531952
|
+
if (!result2)
|
|
531953
|
+
break;
|
|
531954
|
+
if (result2.fileCount > 0 && options3.setSnapshotFileCount) {
|
|
531527
531955
|
options3.setSnapshotFileCount((prev) => {
|
|
531528
531956
|
const newCounts = new Map(prev);
|
|
531529
531957
|
newCounts.set(result2.messageIndex, result2.fileCount);
|
|
@@ -532095,9 +532523,12 @@ ${errorMsg}`,
|
|
|
532095
532523
|
setCurrentModel: streamingState.setCurrentModel
|
|
532096
532524
|
});
|
|
532097
532525
|
} finally {
|
|
532098
|
-
const
|
|
532526
|
+
const session2 = sessionManager.getCurrentSession();
|
|
532527
|
+
let result2 = null;
|
|
532528
|
+
if (session2) {
|
|
532529
|
+
result2 = await hashBasedSnapshotManager.commitSnapshot(session2.id, messages.length);
|
|
532530
|
+
}
|
|
532099
532531
|
if (result2 && result2.fileCount > 0) {
|
|
532100
|
-
const session2 = sessionManager.getCurrentSession();
|
|
532101
532532
|
if (session2) {
|
|
532102
532533
|
const newCounts = new Map(snapshotState.snapshotFileCount);
|
|
532103
532534
|
newCounts.set(result2.messageIndex, result2.fileCount);
|
|
@@ -532282,9 +532713,12 @@ ${errorMsg}`,
|
|
|
532282
532713
|
setCurrentModel: streamingState.setCurrentModel
|
|
532283
532714
|
});
|
|
532284
532715
|
} finally {
|
|
532285
|
-
const
|
|
532716
|
+
const session = sessionManager.getCurrentSession();
|
|
532717
|
+
let result2 = null;
|
|
532718
|
+
if (session) {
|
|
532719
|
+
result2 = await hashBasedSnapshotManager.commitSnapshot(session.id);
|
|
532720
|
+
}
|
|
532286
532721
|
if (result2 && result2.fileCount > 0) {
|
|
532287
|
-
const session = sessionManager.getCurrentSession();
|
|
532288
532722
|
if (session) {
|
|
532289
532723
|
const newCounts = new Map(snapshotState.snapshotFileCount);
|
|
532290
532724
|
newCounts.set(result2.messageIndex, result2.fileCount);
|
|
@@ -535176,10 +535610,7 @@ var init_codebaseIndexAgent = __esm({
|
|
|
535176
535610
|
splitIntoChunks(content, filePath) {
|
|
535177
535611
|
const lines = content.split("\n");
|
|
535178
535612
|
const chunks = [];
|
|
535179
|
-
const maxLinesPerChunk =
|
|
535180
|
-
const minLinesPerChunk = 5;
|
|
535181
|
-
const minCharsPerChunk = 50;
|
|
535182
|
-
const overlapLines = 10;
|
|
535613
|
+
const { maxLinesPerChunk, minLinesPerChunk, minCharsPerChunk, overlapLines } = this.config.chunking;
|
|
535183
535614
|
for (let i = 0; i < lines.length; i += maxLinesPerChunk - overlapLines) {
|
|
535184
535615
|
const startLine = i;
|
|
535185
535616
|
const endLine = Math.min(i + maxLinesPerChunk, lines.length);
|
|
@@ -536830,7 +537261,7 @@ __export(taskManager_exports, {
|
|
|
536830
537261
|
});
|
|
536831
537262
|
import fs39 from "fs/promises";
|
|
536832
537263
|
import path47 from "path";
|
|
536833
|
-
import
|
|
537264
|
+
import os22 from "os";
|
|
536834
537265
|
import { randomUUID as randomUUID4 } from "crypto";
|
|
536835
537266
|
var TaskManager2, taskManager;
|
|
536836
537267
|
var init_taskManager = __esm({
|
|
@@ -536850,7 +537281,7 @@ var init_taskManager = __esm({
|
|
|
536850
537281
|
writable: true,
|
|
536851
537282
|
value: /* @__PURE__ */ new Map()
|
|
536852
537283
|
});
|
|
536853
|
-
this.tasksDir = path47.join(
|
|
537284
|
+
this.tasksDir = path47.join(os22.homedir(), ".snow", "tasks");
|
|
536854
537285
|
}
|
|
536855
537286
|
/**
|
|
536856
537287
|
* Queue an operation for a specific task to prevent concurrent modifications
|