updeep-remeda/types/is.d.ts
2019-01-18 19:51:59 -05:00

10 lines
374 B
TypeScript

import { Path } from './types';
export declare function is(path: Path, predicate: any, object: any): boolean;
interface CurriedIs {
(path: Path, predicate: any, object: any): boolean;
(path: Path, predicate: any): (object: any) => boolean;
(path: Path): (predicate: any) => (object: any) => boolean;
}
declare const _default: CurriedIs;
export default _default;