/** * picks the properties of `T` whose keys extend `K` * * @since 0.0.2 */ export type Pick = { [P in K]: T[P]; }; //# sourceMappingURL=pick.d.ts.map