Interface: Subscription<T>
"urx/actions".Subscription
Subscriptions are bound to Emitters with the subscribe action, and get called with the new values.
Type parameters
Name | Description |
---|---|
T | the Emitter value type. |
Hierarchy
- Subscription
Callable
▸ (value
: T): any
Defined in urx/actions.ts:37
Subscriptions are bound to Emitters with the subscribe action, and get called with the new values.
Parameters:
Name | Type |
---|---|
value | T |
Returns: any