hypr-login/lib/src/types.ts
2025-03-14 20:00:50 +07:00

3 lines
101 B
TypeScript

export type Result<T> = { ok: T } | { error: string };
export type AsyncRes<T> = Promise<Result<T>>;