UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

6 lines (5 loc) 231 B
import { Dictionary } from "./main"; type ObjKey = string | number; export declare function hasIn(path: ObjKey[], dict: Dictionary): boolean; export declare function hasIn(path: ObjKey[]): (dict: Dictionary) => boolean; export {};