Skip to content

Commit 3211679

Browse files
committed
Update hydration.ts
1 parent 79b3c28 commit 3211679

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/solid/src/render/hydration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export type HydrationContext = { id: string; count: number };
55
type SharedConfig = {
66
context?: HydrationContext;
77
resources?: { [key: string]: any };
8-
load?: (id: string) => Promise<any> | any | undefined;
8+
load?: (id: string) => Promise<any> | any;
99
has?: (id: string) => boolean;
1010
gather?: (key: string) => void;
1111
registry?: Map<string, Element>;

0 commit comments

Comments
 (0)