Refactoring
Some checks failed
Lint / lint (push) Failing after 58s

This commit is contained in:
Julien Valverdé
2025-07-15 20:37:55 +02:00
parent 1055f76167
commit beee103aa5

View File

@@ -7,7 +7,8 @@ import type { ExcludeKeys } from "./utils.js"
export interface Component<E, R, P extends {}> extends Pipeable.Pipeable { export interface Component<E, R, P extends {}> extends Pipeable.Pipeable {
readonly body: (props: P) => Effect.Effect<React.ReactNode, E, R> readonly body: (props: P) => Effect.Effect<React.ReactNode, E, R>
readonly displayName?: string readonly displayName?: string
readonly options: Component.Options readonly finalizerExecutionMode: "sync" | "fork"
readonly finalizerExecutionStrategy: ExecutionStrategy.ExecutionStrategy
} }
export namespace Component { export namespace Component {