UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

3 lines (2 loc) 208 B
export declare function project<V extends {}, K extends keyof V>(keys: K[], coll: V[]): Pick<V, K>[]; export declare function project<V extends {}, K extends keyof V>(keys: K[]): (coll: V[]) => Pick<V, K>[];