type FlowFunction

= (param: P) => P; /** * 类似 lodash.flow 的方法 * @param flows */ export declare function flow

(...flows: FlowFunction

[]): FlowFunction

; export {};