• Calls the target function with the given object as the this value and the elements of given array as the arguments. (Shorthand for Reflect.apply)

    Type Parameters

    • T
    • A extends readonly any[]
    • R

    Parameters

    • target: ((this: T, ...args: A) => R)
        • (this: T, ...args: A): R
        • Parameters

          • this: T
          • Rest ...args: A

          Returns R

    • thisArgument: T
    • argumentsList: Readonly<A>

    Returns R

  • Calls the target function with the given object as the this value and the elements of given array as the arguments. (Shorthand for Reflect.apply)

    Parameters

    • target: Function
    • thisArgument: any
    • argumentsList: ArrayLike<any>

    Returns any