mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2026-01-02 05:44:27 +01:00
3 lines
94 B
TypeScript
3 lines
94 B
TypeScript
export type Result<T, E = Error> =
|
|
| { ok: true; value: T }
|
|
| { ok: false; error: E }; |