index.d.ts 193 Bytes Raw Blame History Permalink 1 2 3 const Predicate = () => boolean export function and(...fs: (Predicate | boolean)[]): (...args: any[]) => boolean export function or(...fs: (Predicate | boolean)[]): (...args: any[]) => boolean