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

7 lines
111 B
TypeScript

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