import type { λ } from "./types"; /** * Take a list of functions that accept the same parameters and call them all * with the provided arguments. * * @example * ``` * const mult = (a: number, b: number) => a * b * const div = (a: number, b: number) => a / b * * // prints: [8, 2] * console.log( callAll([mult, div], 4, 2) ) * ``` */ declare const callAll:
[]>(funs: [...F], ...args: P) => ReturnTypes