/** @module function/complement.ts */ /** * Take a function, then its arguements, then return the boolean opposite of said function * :: (...args) -> (fn) -> boolean */ export declare const complement: (f: (...args: A[]) => boolean) => (...args: A[]) => boolean; export default complement;