Type alias Bind5<F, Ctx, T1, T2, T3, T4>

Bind5<F, Ctx, T1, T2, T3, T4>: F extends ((this, a, b, c, d, ...args) => infer R)
    ? ((...args) => R)
    : unknown

Type Parameters

  • F

  • Ctx

  • T1

  • T2

  • T3

  • T4