/** * 判断是否为 Function * * @param value 需要进行判断的值 * @returns {value is Function} true 为 Function,false 为其他类型 */ export declare const isFun: (value: any) => value is Function; export type IsFunType = typeof isFun;