skipPropertyNull<T, P>(prop): ((source) => Observable<{ [X in string | number | symbol]: X extends P ? NonNull<T[X]> : T[X] }>)
Skips / filters values which contains null for the given property.
Narrows the type of the given property within the object type from T | null to just T.
Skips / filters values which contains null for the given property. Narrows the type of the given property within the object type from T | null to just T.
Example:
value { a: 1, b: 'foo' } will pass through
value { a: 1, b: null } will be skipped