• Takes a function that receives multiple arguments and returns a "curried" version of that function that can take any number of those arguments and if they are less than needed a new function that takes the rest of them will be returned

    Type Parameters

    • TArgs extends any[]

    • TReturn

    Parameters

    • fn: ((...args) => TReturn)
        • (...args): TReturn
        • Parameters

          • Rest ...args: TArgs

          Returns TReturn

    Returns CurriedFn<TArgs, TReturn>

Generated using TypeDoc