updeep-remeda/types/is.d.ts

10 lines
374 B
TypeScript
Raw Normal View History

2019-01-19 00:46:25 +00:00
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;