UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

8 lines (7 loc) 381 B
import { Dictionary } from "./main"; type Path = string | number | (string | number)[]; type Input = any[] | Dictionary; export declare function propEq(path: Path, value: any, input: Input): boolean; export declare function propEq(path: Path, value: any): (input: Input) => boolean; export declare function propEq(path: Path): (value: any) => (input: Input) => boolean; export {};