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