mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-04 07:52:51 +00:00
* [pick-deep] Added types for strikeentco's pick-deep * [pick-deep] fixed common mistake array -> ReadonlyArray
10 lines
471 B
TypeScript
10 lines
471 B
TypeScript
// Type definitions for pick-deep 1.0
|
|
// Project: https://github.com/strikeentco/pick-deep#readme
|
|
// Definitions by: Elliott Campbell <https://github.com/ElliottCampbellJHA>
|
|
// Eric Heikes <https://github.com/eheikes>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
declare function pick(obj: object, paths: string | ReadonlyArray<string | ReadonlyArray<string>>, separator?: string): object;
|
|
export = pick;
|