feat: normalize failures through a stable registry

This commit is contained in:
donghyeon-ka
2026-07-25 20:52:58 +09:00
parent a0ca15da65
commit 7f3569ce3c
4 changed files with 315 additions and 57 deletions
+1 -1
View File
@@ -22,7 +22,7 @@
/**
* @template Value
* @typedef {{ ok: true, value: Value, meta?: Record<string, unknown> } |
* { ok: false, error: unknown }} Result
* { ok: false, error: import("../../contracts/errors.js").ApiFailure }} Result
*/
export {};