Files
openclaw/packages/acp-core/dist/runtime/error-text.d.mts
Peter Steinberger 7dea283756 refactor: expand acp core package (#88618)
* refactor: expand acp core package

* chore: drop acp core package symlink

* fix: keep acp core dependency graph stable

* fix: add acp core tsconfig subpaths

* fix: sync acp core boundary path artifacts

* fix: use kysely for cron run-log queries

* fix: resolve acp core subpaths in loaders
2026-05-31 14:48:57 +01:00

11 lines
400 B
TypeScript

import { AcpRuntimeError, AcpRuntimeErrorCode } from "./errors.mjs";
//#region src/runtime/error-text.d.ts
declare function formatAcpRuntimeErrorText(error: AcpRuntimeError): string;
declare function toAcpRuntimeErrorText(params: {
error: unknown;
fallbackCode: AcpRuntimeErrorCode;
fallbackMessage: string;
}): string;
//#endregion
export { formatAcpRuntimeErrorText, toAcpRuntimeErrorText };