@tempots/dom

OneOfValue() function

Creates a renderable value that represents one of the provided cases based on the given match signal.

The match signal should emit a value that matches one of the keys in the cases object.

Signature:

OneOfValue: <T extends symbol | number | string>(match: Value<T>, cases: OneOfValueOptions<T>) => Renderable

Parameters

Parameter

Type

Description

match

Value<T>

The match signal.

cases

OneOfValueOptions<T>

The options for the one-of value.

Returns: Renderable

  • The renderable value representing one of the cases.