@tempots/dom

Task() function

Represents a renderable task that can be executed asynchronously.

Signature:

Task: <T>(task: () => Promise<T>, options: TaskOptions<T> | ((value: T) => TNode)) => Renderable

Parameters

Parameter

Type

Description

task

() => Promise<T>

The asynchronous task to be executed.

options

TaskOptions<T> | ((value: T) => TNode)

The options for the task or a function that transforms the task result into a renderable node.

Returns: Renderable

  • A function that renders the task and returns a cleanup function.