/** * Created by beenotung on 12/26/16. */ export declare function curry(f: Function): A; export declare const id: Function; /** internal func, use id() instead */ export declare function autoCurry(f: Function): A;