@tempots/dom

UseProbe() function

Uses a probe, which can be used to trigger a callback when all probes with the same identifier are resolved. To resolve a probe, call the done function.

Signature:

UseProbe: (identifier: symbol, fn: (done: () => void) => TNode) => Renderable

Parameters

Parameter

Type

Description

identifier

symbol

The identifier for the probe.

fn

(done: () => void) => TNode

The callback to be triggered when the probe is no longer needed.

Returns: Renderable

The child component with the probe.