mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2025-12-30 12:24:20 +01:00
4 lines
95 B
TypeScript
4 lines
95 B
TypeScript
export type Result<T, E = Error> =
|
|
| { ok: true; value: T }
|
|
| { ok: false; error: E };
|