@tempots/dom

Use() function

Creates a renderable function that consumes data from multiple consumers and renders the result.

Signature:

Use: <C extends Record<string, Consumer<unknown>>>(providers: C, fn: (data: UseMany<C>) => TNode) => Renderable

Parameters

Parameter

Type

Description

providers

C

An object containing consumer functions.

fn

(data: UseMany<C>) => TNode

A function that receives the data from the consumers and returns a renderable function.

Returns: Renderable

A renderable function that can be called with a DOMContext and returns a cleanup function.