/** * Fixes the problem with TypeScript not inferring templated call correctly, * even with `strictBindCallApply: true` * * @example * * ```ts * const result = call(func, ths, ...args) // same as `func.call(ths, ...args)` * ``` * * @param func - Function to call * @param thisArg - `this` argument to call `func` with * @param args - Arguments to call `func` with * @returns The value that `func` returned */ export declare function call(func: (this: ThisArg, ...args: Args) => R, thisArg: ThisArg, ...args: Args): R; //# sourceMappingURL=call.d.ts.map