@tempots/dom

Async() function

Creates a renderable asynchronous task that wraps a promise.

Signature:

Async: <T>(promise: Promise<T>, options: AsyncOptions<T> | ((value: T) => TNode)) => Renderable

Parameters

Parameter

Type

Description

promise

Promise<T>

The promise to wrap.

options

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

The options for the asynchronous task.

Returns: Renderable

The renderable asynchronous task.