codebuff 1.0.248 → 1.0.250
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/code-map/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/terminal.js +0 -1
- package/dist/utils/terminal.js.map +1 -1
- package/package.json +1 -1
- package/dist/background-process-manager.d.ts +0 -50
- package/dist/browser-runner.d.ts +0 -35
- package/dist/chat-storage.d.ts +0 -2
- package/dist/checkpoints/checkpoint-manager.d.ts +0 -94
- package/dist/checkpoints/file-manager.d.ts +0 -72
- package/dist/checkpoints/file-manager.js +0 -311
- package/dist/checkpoints/file-manager.js.map +0 -1
- package/dist/cli-handlers/api-key.d.ts +0 -25
- package/dist/cli-handlers/checkpoint.d.ts +0 -18
- package/dist/cli-handlers/diff.d.ts +0 -2
- package/dist/cli-handlers/easter-egg.d.ts +0 -1
- package/dist/cli-handlers/easter-egg.js +0 -126
- package/dist/cli-handlers/easter-egg.js.map +0 -1
- package/dist/cli-handlers/inititalization-flow.d.ts +0 -1
- package/dist/cli.d.ts +0 -44
- package/dist/client.d.ts +0 -157
- package/dist/config.d.ts +0 -4
- package/dist/config.js +0 -12
- package/dist/config.js.map +0 -1
- package/dist/create-template-project.d.ts +0 -1
- package/dist/create-template-project.js +0 -107
- package/dist/create-template-project.js.map +0 -1
- package/dist/credentials.d.ts +0 -4
- package/dist/dev-process-manager.d.ts +0 -10
- package/dist/fingerprint.d.ts +0 -1
- package/dist/fingerprint.js +0 -48
- package/dist/fingerprint.js.map +0 -1
- package/dist/index.d.ts +0 -2
- package/dist/menu.d.ts +0 -3
- package/dist/project-files.d.ts +0 -114
- package/dist/startup-process-handler.d.ts +0 -2
- package/dist/tool-handlers.d.ts +0 -28
- package/dist/types.d.ts +0 -15
- package/dist/update-codebuff.d.ts +0 -1
- package/dist/update-codebuff.js +0 -160
- package/dist/update-codebuff.js.map +0 -1
- package/dist/utils/__tests__/background-process-manager.test.d.ts +0 -1
- package/dist/utils/__tests__/background-process-manager.test.js +0 -289
- package/dist/utils/__tests__/background-process-manager.test.js.map +0 -1
- package/dist/utils/__tests__/tool-renderers.test.d.ts +0 -1
- package/dist/utils/__tests__/xml-stream-parser.test.d.ts +0 -1
- package/dist/utils/analytics.d.ts +0 -6
- package/dist/utils/detect-shell.d.ts +0 -1
- package/dist/utils/detect-shell.js +0 -60
- package/dist/utils/detect-shell.js.map +0 -1
- package/dist/utils/logger.d.ts +0 -21
- package/dist/utils/spinner.d.ts +0 -11
- package/dist/utils/spinner.js +0 -87
- package/dist/utils/spinner.js.map +0 -1
- package/dist/utils/system-info.d.ts +0 -8
- package/dist/utils/system-info.js +0 -22
- package/dist/utils/system-info.js.map +0 -1
- package/dist/utils/terminal.d.ts +0 -41
- package/dist/utils/tool-renderers.d.ts +0 -16
- package/dist/utils/xml-stream-parser.d.ts +0 -9
- package/dist/web-scraper.d.ts +0 -3
- package/dist/workers/checkpoint-worker.d.ts +0 -1
- package/dist/workers/checkpoint-worker.js +0 -48
- package/dist/workers/checkpoint-worker.js.map +0 -1
- package/dist/workers/project-context.d.ts +0 -1
package/dist/utils/spinner.js
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.Spinner = void 0;
|
|
27
|
-
const picocolors_1 = require("picocolors");
|
|
28
|
-
const readline = __importStar(require("readline"));
|
|
29
|
-
const chars = ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'];
|
|
30
|
-
class Spinner {
|
|
31
|
-
static instance = null;
|
|
32
|
-
loadingInterval = null;
|
|
33
|
-
constructor() { }
|
|
34
|
-
static get() {
|
|
35
|
-
if (!Spinner.instance) {
|
|
36
|
-
Spinner.instance = new Spinner();
|
|
37
|
-
}
|
|
38
|
-
return Spinner.instance;
|
|
39
|
-
}
|
|
40
|
-
start() {
|
|
41
|
-
if (this.loadingInterval) {
|
|
42
|
-
return;
|
|
43
|
-
}
|
|
44
|
-
let i = 0;
|
|
45
|
-
// Hide cursor while spinner is active
|
|
46
|
-
process.stdout.write('\u001B[?25l');
|
|
47
|
-
this.loadingInterval = setInterval(() => {
|
|
48
|
-
this.rewriteLine((0, picocolors_1.green)(`${chars[i]} Thinking...`));
|
|
49
|
-
i = (i + 1) % chars.length;
|
|
50
|
-
}, 100);
|
|
51
|
-
}
|
|
52
|
-
stop() {
|
|
53
|
-
if (!this.loadingInterval) {
|
|
54
|
-
return;
|
|
55
|
-
}
|
|
56
|
-
clearInterval(this.loadingInterval);
|
|
57
|
-
this.loadingInterval = null;
|
|
58
|
-
this.rewriteLine(''); // Clear the spinner line
|
|
59
|
-
this.restoreCursor(); // Show cursor after spinner stops
|
|
60
|
-
}
|
|
61
|
-
restoreCursor() {
|
|
62
|
-
process.stdout.write('\u001B[?25h');
|
|
63
|
-
}
|
|
64
|
-
log(message) {
|
|
65
|
-
// Temporarily clear the spinner line
|
|
66
|
-
this.rewriteLine('');
|
|
67
|
-
// Write the log message
|
|
68
|
-
console.log(message);
|
|
69
|
-
// If spinner is active, redraw it on the next line
|
|
70
|
-
if (this.loadingInterval) {
|
|
71
|
-
const i = Math.floor(Math.random() * chars.length);
|
|
72
|
-
this.rewriteLine((0, picocolors_1.green)(`${chars[i]} Thinking...`));
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
rewriteLine(line) {
|
|
76
|
-
if (process.stdout.isTTY) {
|
|
77
|
-
readline.clearLine(process.stdout, 0);
|
|
78
|
-
readline.cursorTo(process.stdout, 0);
|
|
79
|
-
process.stdout.write(line);
|
|
80
|
-
}
|
|
81
|
-
else {
|
|
82
|
-
process.stdout.write(line + '\n');
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
exports.Spinner = Spinner;
|
|
87
|
-
//# sourceMappingURL=spinner.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"spinner.js","sourceRoot":"","sources":["../../src/utils/spinner.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2CAAkC;AAClC,mDAAoC;AAEpC,MAAM,KAAK,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAA;AAEhE,MAAa,OAAO;IACV,MAAM,CAAC,QAAQ,GAAmB,IAAI,CAAA;IACtC,eAAe,GAA0B,IAAI,CAAA;IAErD,gBAAuB,CAAC;IAEjB,MAAM,CAAC,GAAG;QACf,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC;YACtB,OAAO,CAAC,QAAQ,GAAG,IAAI,OAAO,EAAE,CAAA;QAClC,CAAC;QACD,OAAO,OAAO,CAAC,QAAQ,CAAA;IACzB,CAAC;IAED,KAAK;QACH,IAAI,IAAI,CAAC,eAAe,EAAE,CAAC;YACzB,OAAM;QACR,CAAC;QAED,IAAI,CAAC,GAAG,CAAC,CAAA;QACT,sCAAsC;QACtC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,aAAa,CAAC,CAAA;QACnC,IAAI,CAAC,eAAe,GAAG,WAAW,CAAC,GAAG,EAAE;YACtC,IAAI,CAAC,WAAW,CAAC,IAAA,kBAAK,EAAC,GAAG,KAAK,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAA;YAClD,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,MAAM,CAAA;QAC5B,CAAC,EAAE,GAAG,CAAC,CAAA;IACT,CAAC;IAED,IAAI;QACF,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE,CAAC;YAC1B,OAAM;QACR,CAAC;QAED,aAAa,CAAC,IAAI,CAAC,eAAe,CAAC,CAAA;QACnC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAA;QAC3B,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA,CAAC,yBAAyB;QAC9C,IAAI,CAAC,aAAa,EAAE,CAAA,CAAC,kCAAkC;IACzD,CAAC;IAED,aAAa;QACX,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,aAAa,CAAC,CAAA;IACrC,CAAC;IAED,GAAG,CAAC,OAAe;QACjB,qCAAqC;QACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QACpB,wBAAwB;QACxB,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;QACpB,mDAAmD;QACnD,IAAI,IAAI,CAAC,eAAe,EAAE,CAAC;YACzB,MAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,KAAK,CAAC,MAAM,CAAC,CAAA;YAClD,IAAI,CAAC,WAAW,CAAC,IAAA,kBAAK,EAAC,GAAG,KAAK,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAA;QACpD,CAAC;IACH,CAAC;IAEO,WAAW,CAAC,IAAY;QAC9B,IAAI,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;YACzB,QAAQ,CAAC,SAAS,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;YACrC,QAAQ,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;YACpC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QAC5B,CAAC;aAAM,CAAC;YACN,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,CAAA;QACnC,CAAC;IACH,CAAC;;AA9DH,0BA+DC"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.getSystemInfo = void 0;
|
|
7
|
-
const process_1 = require("process");
|
|
8
|
-
const path_1 = __importDefault(require("path"));
|
|
9
|
-
const os_1 = __importDefault(require("os"));
|
|
10
|
-
const getSystemInfo = () => {
|
|
11
|
-
const shell = process.env.SHELL || process.env.COMSPEC || 'unknown';
|
|
12
|
-
return {
|
|
13
|
-
platform: process_1.platform,
|
|
14
|
-
shell: path_1.default.basename(shell),
|
|
15
|
-
nodeVersion: process.version,
|
|
16
|
-
arch: process.arch,
|
|
17
|
-
homedir: os_1.default.homedir(),
|
|
18
|
-
cpus: os_1.default.cpus().length,
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
exports.getSystemInfo = getSystemInfo;
|
|
22
|
-
//# sourceMappingURL=system-info.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"system-info.js","sourceRoot":"","sources":["../../src/utils/system-info.ts"],"names":[],"mappings":";;;;;;AAAA,qCAAkC;AAClC,gDAAuB;AACvB,4CAAmB;AAEZ,MAAM,aAAa,GAAG,GAAG,EAAE;IAChC,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,KAAK,IAAI,OAAO,CAAC,GAAG,CAAC,OAAO,IAAI,SAAS,CAAA;IAEnE,OAAO;QACL,QAAQ,EAAR,kBAAQ;QACR,KAAK,EAAE,cAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;QAC3B,WAAW,EAAE,OAAO,CAAC,OAAO;QAC5B,IAAI,EAAE,OAAO,CAAC,IAAI;QAClB,OAAO,EAAE,YAAE,CAAC,OAAO,EAAE;QACrB,IAAI,EAAE,YAAE,CAAC,IAAI,EAAE,CAAC,MAAM;KACvB,CAAA;AACH,CAAC,CAAA;AAXY,QAAA,aAAa,iBAWzB"}
|
package/dist/utils/terminal.d.ts
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { ChildProcessWithoutNullStreams } from 'child_process';
|
|
2
|
-
import type { IPty } from '@homebridge/node-pty-prebuilt-multiarch';
|
|
3
|
-
type PersistentProcess = {
|
|
4
|
-
type: 'pty';
|
|
5
|
-
shell: 'pty';
|
|
6
|
-
pty: IPty;
|
|
7
|
-
timerId: NodeJS.Timeout | null;
|
|
8
|
-
} | {
|
|
9
|
-
type: 'process';
|
|
10
|
-
shell: 'bash' | 'cmd.exe' | 'powershell.exe';
|
|
11
|
-
childProcess: ChildProcessWithoutNullStreams | null;
|
|
12
|
-
timerId: NodeJS.Timeout | null;
|
|
13
|
-
};
|
|
14
|
-
declare const createPersistantProcess: (dir: string) => PersistentProcess;
|
|
15
|
-
export declare let persistentProcess: ReturnType<typeof createPersistantProcess> | null;
|
|
16
|
-
export declare const isCommandRunning: () => boolean;
|
|
17
|
-
export declare const recreateShell: (projectPath: string) => void;
|
|
18
|
-
export declare const resetShell: (projectPath: string) => void;
|
|
19
|
-
export declare function runBackgroundCommand(options: {
|
|
20
|
-
toolCallId: string;
|
|
21
|
-
command: string;
|
|
22
|
-
mode: 'user' | 'assistant';
|
|
23
|
-
projectPath: string;
|
|
24
|
-
stdoutFile?: string;
|
|
25
|
-
stderrFile?: string;
|
|
26
|
-
}, resolveCommand: (value: {
|
|
27
|
-
result: string;
|
|
28
|
-
stdout: string;
|
|
29
|
-
}) => void): void;
|
|
30
|
-
export declare const runTerminalCommand: (toolCallId: string, command: string, mode: "user" | "assistant", projectPath: string, processType: "SYNC" | "BACKGROUND", stdoutFile?: string, stderrFile?: string) => Promise<{
|
|
31
|
-
result: string;
|
|
32
|
-
stdout: string;
|
|
33
|
-
}>;
|
|
34
|
-
export declare const runCommandPty: (persistentProcess: PersistentProcess & {
|
|
35
|
-
type: "pty";
|
|
36
|
-
}, command: string, mode: "user" | "assistant", resolve: (value: {
|
|
37
|
-
result: string;
|
|
38
|
-
stdout: string;
|
|
39
|
-
}) => void, projectPath: string) => void;
|
|
40
|
-
export declare function killAndResetPersistentProcess(): void;
|
|
41
|
-
export {};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { ToolName } from '../common/constants/tools';
|
|
2
|
-
/**
|
|
3
|
-
* Interface for handling tool call rendering
|
|
4
|
-
*/
|
|
5
|
-
export interface ToolCallRenderer {
|
|
6
|
-
onToolStart?: (toolName: string, attributes: Record<string, string>) => string | null;
|
|
7
|
-
onParamStart?: (paramName: string, toolName: string) => string | null;
|
|
8
|
-
onParamChunk?: (content: string, paramName: string, toolName: string) => string | null;
|
|
9
|
-
onParamEnd?: (paramName: string, toolName: string, content: string) => string | null;
|
|
10
|
-
onToolEnd?: (toolName: string, params: Record<string, string>) => string | null;
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* Default renderer for tool calls that formats them nicely for the console
|
|
14
|
-
*/
|
|
15
|
-
export declare const defaultToolCallRenderer: ToolCallRenderer;
|
|
16
|
-
export declare const toolRenderers: Record<ToolName, ToolCallRenderer>;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Saxy } from '../common/util/saxy';
|
|
2
|
-
import { ToolCallRenderer } from './tool-renderers';
|
|
3
|
-
/**
|
|
4
|
-
* Creates a transform stream that processes XML tool calls
|
|
5
|
-
* @param renderer Custom renderer for tool calls or a map of renderers per tool
|
|
6
|
-
* @param callback Optional callback function to receive processed chunks
|
|
7
|
-
* @returns Transform stream
|
|
8
|
-
*/
|
|
9
|
-
export declare function createXMLStreamParser(renderer: Record<string, ToolCallRenderer>, callback?: (chunk: string) => void): Saxy;
|
package/dist/web-scraper.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const worker_threads_1 = require("worker_threads");
|
|
4
|
-
const file_manager_1 = require("../checkpoints/file-manager");
|
|
5
|
-
if (worker_threads_1.parentPort) {
|
|
6
|
-
const parentPort = worker_threads_1.parentPort;
|
|
7
|
-
/**
|
|
8
|
-
* Handle incoming messages from the main thread.
|
|
9
|
-
* Executes git operations for storing or restoring checkpoints.
|
|
10
|
-
*/
|
|
11
|
-
parentPort.on('message', async (message) => {
|
|
12
|
-
const { id, type, projectDir, bareRepoPath, commit, message: commitMessage, relativeFilepaths, } = message;
|
|
13
|
-
try {
|
|
14
|
-
let result;
|
|
15
|
-
if (type === 'store') {
|
|
16
|
-
// Store the current state as a git commit
|
|
17
|
-
result = await (0, file_manager_1.storeFileState)({
|
|
18
|
-
projectDir,
|
|
19
|
-
bareRepoPath,
|
|
20
|
-
message: commitMessage,
|
|
21
|
-
relativeFilepaths,
|
|
22
|
-
});
|
|
23
|
-
}
|
|
24
|
-
else if (type === 'restore') {
|
|
25
|
-
// Restore files to a previous git commit state
|
|
26
|
-
await (0, file_manager_1.restoreFileState)({
|
|
27
|
-
projectDir,
|
|
28
|
-
bareRepoPath,
|
|
29
|
-
commit: commit,
|
|
30
|
-
relativeFilepaths,
|
|
31
|
-
});
|
|
32
|
-
result = true;
|
|
33
|
-
}
|
|
34
|
-
else {
|
|
35
|
-
throw new Error(`Unknown operation type: ${type}`);
|
|
36
|
-
}
|
|
37
|
-
parentPort.postMessage({ id, success: true, result });
|
|
38
|
-
}
|
|
39
|
-
catch (error) {
|
|
40
|
-
parentPort.postMessage({
|
|
41
|
-
id,
|
|
42
|
-
success: false,
|
|
43
|
-
error: error instanceof Error ? error.message : String(error),
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
//# sourceMappingURL=checkpoint-worker.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"checkpoint-worker.js","sourceRoot":"","sources":["../../src/workers/checkpoint-worker.ts"],"names":[],"mappings":";;AAAA,mDAA8D;AAC9D,8DAA8E;AAoB9E,IAAI,2BAAe,EAAE,CAAC;IACpB,MAAM,UAAU,GAAG,2BAAe,CAAA;IAElC;;;OAGG;IACH,UAAU,CAAC,EAAE,CAAC,SAAS,EAAE,KAAK,EAAE,OAAsB,EAAE,EAAE;QACxD,MAAM,EACJ,EAAE,EACF,IAAI,EACJ,UAAU,EACV,YAAY,EACZ,MAAM,EACN,OAAO,EAAE,aAAa,EACtB,iBAAiB,GAClB,GAAG,OAAO,CAAA;QACX,IAAI,CAAC;YACH,IAAI,MAAwB,CAAA;YAC5B,IAAI,IAAI,KAAK,OAAO,EAAE,CAAC;gBACrB,0CAA0C;gBAC1C,MAAM,GAAG,MAAM,IAAA,6BAAc,EAAC;oBAC5B,UAAU;oBACV,YAAY;oBACZ,OAAO,EAAE,aAAc;oBACvB,iBAAiB;iBAClB,CAAC,CAAA;YACJ,CAAC;iBAAM,IAAI,IAAI,KAAK,SAAS,EAAE,CAAC;gBAC9B,+CAA+C;gBAC/C,MAAM,IAAA,+BAAgB,EAAC;oBACrB,UAAU;oBACV,YAAY;oBACZ,MAAM,EAAE,MAAO;oBACf,iBAAiB;iBAClB,CAAC,CAAA;gBACF,MAAM,GAAG,IAAI,CAAA;YACf,CAAC;iBAAM,CAAC;gBACN,MAAM,IAAI,KAAK,CAAC,2BAA2B,IAAI,EAAE,CAAC,CAAA;YACpD,CAAC;YAED,UAAU,CAAC,WAAW,CAAC,EAAE,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC,CAAA;QACvD,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,UAAU,CAAC,WAAW,CAAC;gBACrB,EAAE;gBACF,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;aAC9D,CAAC,CAAA;QACJ,CAAC;IACH,CAAC,CAAC,CAAA;AACJ,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|