// Type definitions for object.pick 1.3 // Project: https://github.com/jonschlinkert/object.pick // Definitions by: Ifiok Jr. // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 /** * Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore. * * @param object * @param keys */ declare function pick(object: T, keys: U[] | readonly U[]): Pick; export = pick;