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.
This commit is contained in:
Peter Steinberger
2026-07-17 01:40:42 -07:00
parent 8243afc062
commit f656d96fc3
+2
View File
@@ -0,0 +1,2 @@
/** Return a readable message for Error and non-Error thrown values. */
export function formatErrorMessage(error: unknown): string;