Fix
All checks were successful
Lint / lint (push) Successful in 12s

This commit is contained in:
Julien Valverdé
2025-07-23 02:00:02 +02:00
parent 43d5a793dd
commit 5d045ecd1d

View File

@@ -12,6 +12,7 @@ export interface Component<E, R, P extends {}> extends Pipeable.Pipeable, Compon
readonly [TypeId]: TypeId
/** @internal */
makeFunctionComponent(runtimeRef: React.Ref<Runtime.Runtime<Exclude<R, Scope.Scope>>>, scope: Scope.Scope): React.FC<P>
/** @internal */
readonly body: (props: P) => Effect.Effect<React.ReactNode, E, R>
}