Repository URL to install this package:
|
Version:
1.1.2 ▾
|
import { AnyObj } from './typings';
/**
* Returns a new object with the key/value pairs from `obj`
* that are not in the array `omitKeys`.
*/
export declare const omit: <Obj = AnyObj, List = string[]>(obj: Obj, omitKeys: List) => import("./typings")._Without<Obj, import("./typings").Zip<List, Obj>>;