summaryrefslogtreecommitdiff
path: root/lib/types.ts
blob: a22e8be3d2d513544eb24b6216cf722cc892f540 (plain)
1
2
export type Result<T> = { ok: T } | { error: string };
export type AsyncRes<T> = Promise<Result<T>>;