updeep/esm/ifElse.d.ts

8 lines
344 B
TypeScript
Raw Permalink Normal View History

2025-01-31 17:50:51 +00:00
import { Predicate } from "./predicate.js";
export interface IfElse {
(object: any, predicate: Predicate, trueUpdates: any, falseUpdates: any): unknown;
(predicate: Predicate, trueUpdates: any, falseUpdates: any): (unknown: any) => unknown;
}
declare const _default: IfElse;
export default _default;
//# sourceMappingURL=ifElse.d.ts.map