Files
openclaw/scripts/lib/error-format.d.mts
Peter Steinberger f656d96fc3 fix(ci): add missing declaration for error-format.mjs
8858944a81 imports formatErrorMessage from scripts/openclaw-npm-postpublish-verify.ts,
but the .mjs had no sibling .d.mts like every other scripts/lib module imported
from .ts, so check-test-types fails repo-wide with TS7016.
2026-07-17 01:40:42 -07:00

3 lines
132 B
TypeScript

/** Return a readable message for Error and non-Error thrown values. */
export function formatErrorMessage(error: unknown): string;