From 485278558fcae0a32a9157835ad32a154628101b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Wed, 26 Nov 2025 22:43:32 +0100 Subject: [PATCH] Work --- packages/effect-fc/src/Result.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/effect-fc/src/Result.ts b/packages/effect-fc/src/Result.ts index 010f825..926d55f 100644 --- a/packages/effect-fc/src/Result.ts +++ b/packages/effect-fc/src/Result.ts @@ -7,6 +7,10 @@ export type ResultTypeId = typeof ResultTypeId export type Result = ( | Initial | Running

+ | Final +) + +export type Final = ( | Success | (Success & Refreshing

) | Failure