This commit is contained in:
2025-09-11 17:15:02 +02:00
parent ecd439dcd1
commit f1898ff0fc
4 changed files with 77 additions and 74 deletions
+1 -1
View File
@@ -1 +1 @@
export type Ok<T> = {ok: true, data: T} | {ok?: false}
export type Ok<T> = {ok: true; data: T} | {ok?: false}