Skip to content

Commit

Permalink
Merge branch 'develop' into ord
Browse files Browse the repository at this point in the history
  • Loading branch information
Harris-Miller committed May 3, 2023
2 parents 8581ac6 + 19d5305 commit d371eb9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions types/pathEq.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import * as _ from 'ts-toolbelt';
import { Path } from './util/tools';

export function pathEq(path: Path, val: any, obj: any): boolean;
export function pathEq(path: Path, val: any): (obj: any) => boolean;
export function pathEq(path: Path): _.F.Curry<(a: any, b: any) => boolean>;
export function pathEq(val: any, path: Path, obj: any): boolean;
export function pathEq(val: any, path: Path): (obj: any) => boolean;
export function pathEq(val: any): {
(path: Path): (obj: any) => boolean;
(path: Path, obj: any): boolean;
};

0 comments on commit d371eb9

Please sign in to comment.