UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

3 lines (2 loc) 196 B
export declare function pick<V extends {}, K extends keyof V>(props: K[], dict: V): Pick<V, K>; export declare function pick<V extends {}, K extends keyof V>(props: K[]): (dict: V) => Pick<V, K>;