Skip to main content

Type Alias: CombinedSubscribableInputs<Types>

CombinedSubscribableInputs<Types> = { [Index in keyof Types]: Subscribable<Types[Index]> } & TupleLength<Types>

Defined in: src/sdk/sub/CombinedSubject.ts:14

A type which maps a tuple of input types to a tuple of subscribables that provide the input types.

Type Parameters

Type Parameter
Types extends readonly any[]