SOUTHERNCO\x2mjbyrn 7efe7605b8 Template Upload
2017-05-17 13:45:25 -04:00

11 lines
450 B
TypeScript

import { Observable } from '../Observable';
/**
* Retrieves the value of a specified nested property from all elements in
* the Observable sequence. If a property can't be resolved, it will return
* `undefined` for that value.
*
* @param {...args} properties the nested properties to pluck
* @returns {Observable} Returns a new Observable sequence of property values
*/
export declare function pluck(...properties: string[]): Observable<any>;