diff --git a/packages/effect-fc/src/Component.ts b/packages/effect-fc/src/Component.ts index e707343..dc861dc 100644 --- a/packages/effect-fc/src/Component.ts +++ b/packages/effect-fc/src/Component.ts @@ -7,7 +7,8 @@ import type { ExcludeKeys } from "./utils.js" export interface Component extends Pipeable.Pipeable { readonly body: (props: P) => Effect.Effect readonly displayName?: string - readonly options: Component.Options + readonly finalizerExecutionMode: "sync" | "fork" + readonly finalizerExecutionStrategy: ExecutionStrategy.ExecutionStrategy } export namespace Component {