Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/utils / dist / omit.d.ts
Size: Mime:
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>>;