// Type definitions for just-pick 2.1 // Project: https://github.com/angus-c/just#readme // Definitions by: Peter Safranek // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.1 declare function pick(obj: T, select: U[]): Pick; declare function pick(obj: T, select1: U, ...selectn: U[]): Pick; export = pick;