/** * @Description: 类型判断方法 * @author: hyl * @param: obj 判断对象 * @param: type 判断类型 * @returns: bool */ declare type IAny = Record; export declare function isString(s: any): s is string; export declare function isNumber(s: any): s is number; export declare function isBoolean(s: any): s is boolean; export declare function isArray(array: any): array is Array; export declare function isObject(s: any): s is IAny; export declare function isFunction(s: any): s is Function; export declare function isTypeArray(array: any, type?: string): array is Array; export declare function typeis(obj: any, type?: string): boolean; export declare function guid(): string; export {};