Skip to content

Type Alias: UnwrapSubjectValue<T>

UnwrapSubjectValue<T> = T extends SubjectLike<infer V> ? V : T extends readonly unknown[] ? { -readonly [K in keyof T]: UnwrapSubjectValue<T[K]> } : T

Defined in: packages/rx/src/types.ts:18

Wrap a value from a signle subject or an array of subjects and values

Type Parameters

T

T