@tempots/dom
UseGlobalProbe() function
Uses a global 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:
UseGlobalProbe: (fn: (done: () => void) => TNode) => Renderable
Parameters
Parameter |
Type |
Description |
---|---|---|
fn |
(done: () => void) => TNode |
The callback to be triggered when the probe is no longer needed. |
Returns: Renderable
The child component with the probe.