UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

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