UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

12 lines (11 loc) 604 B
import { OperatorFunction } from '../../interfaces'; /** * Maps each source value to its specified nested property. * * @export * @template TSource The type of the elements in the source sequence. * @template TResult The type of the elements in the result sequence, obtained by the property names. * @param {...string[]} args The nested properties to pluck from each source value. * @returns {OperatorAsyncFunction<TSource, TResult>} An iterable of property values from the source values. */ export declare function pluck<TSource, TResult>(...args: string[]): OperatorFunction<TSource, TResult>;