UNPKG

185 BTypeScriptView Raw
1export type ChainedFunction = ((...args: any[]) => void) | undefined | null;
2
3export default function createChainedFunction(
4 ...funcs: ChainedFunction[]
5): (...args: any[]) => never;