/** * 创建链式调用的函数 */ export type FunctionType = (...args: any[]) => any; export declare function createChainFunction(...funs: FunctionType[]): (...args: any[]) => void;