UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

5 lines (4 loc) 200 B
type Path = (string | number)[]; export declare function dissocIn<A extends {} | any[]>(path: Path, dict: A): A; export declare function dissocIn(path: Path): <A extends {}>(dict: A) => A; export {};