Files
config/src/helpers.ts
T
2025-09-11 17:15:02 +02:00

2 lines
55 B
TypeScript

export type Ok<T> = {ok: true; data: T} | {ok?: false}