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

This commit is contained in:
Julien Valverdé
2025-07-18 12:10:40 +02:00
parent 4d99fb1cc1
commit 19e74c1673

View File

@@ -331,10 +331,10 @@ export const withOptions: {
export const withRuntime: { export const withRuntime: {
<E, R, P extends {}>( <E, R, P extends {}>(
context: React.Context<Runtime.Runtime<R>>, context: React.Context<Runtime.Runtime<R>>,
): (self: Component<E, R, P> & Suspense) => React.FC<P & SuspenseProps> ): {
<E, R, P extends {}>( (self: Component<E, R, P> & Suspense): React.FC<P & SuspenseProps>
context: React.Context<Runtime.Runtime<R>>, (self: Component<E, R, P>): React.FC<P>
): (self: Component<E, R, P>) => React.FC<P> }
<E, R, P extends {}>( <E, R, P extends {}>(
self: Component<E, R, P> & Suspense, self: Component<E, R, P> & Suspense,
context: React.Context<Runtime.Runtime<R>>, context: React.Context<Runtime.Runtime<R>>,