type Arr = readonly unknown[]; /** * * Reducer for function with ***one object*** parameter which * * @param f The function to reduce * @param headArgs First arguments for reducing * @returns A new function without the ***headArgs*** provided */ export declare function partialCall(f: (...args: [...T, ...U]) => R, ...headArgs: T): (...tailArgs: U) => R; /** * Reducer for function with ***one object*** parameter which * * @param f The function to test * @param headArgs First arguments for reducing * @returns A new function without the ***headArgs*** provided */ export declare function partialCallO(f: (arg: U) => R, headArgs?: T): (remainArgs: Omit) => R; export {}; //# sourceMappingURL=partialCall.d.ts.map