We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79b3c28 commit 3211679Copy full SHA for 3211679
packages/solid/src/render/hydration.ts
@@ -5,7 +5,7 @@ export type HydrationContext = { id: string; count: number };
5
type SharedConfig = {
6
context?: HydrationContext;
7
resources?: { [key: string]: any };
8
- load?: (id: string) => Promise<any> | any | undefined;
+ load?: (id: string) => Promise<any> | any;
9
has?: (id: string) => boolean;
10
gather?: (key: string) => void;
11
registry?: Map<string, Element>;
0 commit comments