Interface: Subscription<T>#

"urx/src/actions".Subscription

Subscriptions are bound to Emitters with the subscribe action, and get called with the new values.

Type parameters#

NameDescription
Tthe Emitter value type.

Hierarchy#

  • Subscription

Callable#

â–¸ (value: T): any

Defined in urx/src/actions.ts:32

Subscriptions are bound to Emitters with the subscribe action, and get called with the new values.

Parameters:#

NameType
valueT

Returns: any