Skip to content

Commit

Permalink
Merge 3211679 into 0937a17
Browse files Browse the repository at this point in the history
  • Loading branch information
lxsmnsyc committed Oct 2, 2023
2 parents 0937a17 + 3211679 commit d84d2f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/solid/src/render/hydration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ export type HydrationContext = { id: string; count: number };
type SharedConfig = {
context?: HydrationContext;
resources?: { [key: string]: any };
load?: (id: string) => Promise<any> | any | undefined;
load?: (id: string) => Promise<any> | any;
has?: (id: string) => boolean;
gather?: (key: string) => void;
registry?: Map<string, Element>;
done?: boolean;
Expand Down

0 comments on commit d84d2f4

Please sign in to comment.