declare type Mergeable

= (...args: P) => void; /** * Create a function which is a merge of many function with similar signatures. Functions are called * successively. * * @param funcs - Functions to merge. * @returns The merged functions. */ export declare function mergeFunctions

(...funcs: Array | undefined>): Mergeable

; export {};