Skip to content

Commit

Permalink
update spread types
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansolid committed Oct 22, 2024
1 parent f0de458 commit 4416716
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/dom-expressions/src/client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function delegateEvents(eventNames: string[], d?: Document): void;
export function clearDelegatedEvents(d?: Document): void;
export function spread<T>(
node: Element,
accessor: (() => T) | T,
accessor: T,
isSVG?: Boolean,
skipChildren?: Boolean
): void;
Expand Down
2 changes: 1 addition & 1 deletion packages/dom-expressions/src/server.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export function insert<T>(
/** @deprecated not supported on the server side */
export function spread<T>(
node: Element,
accessor: (() => T) | T,
accessor: T,
isSVG?: Boolean,
skipChildren?: Boolean
): void;
Expand Down

0 comments on commit 4416716

Please sign in to comment.