UNPKG

252 BTypeScriptView Raw
1/**
2 * 判断是否 Boolean 对象
3 * @param val 值
4 */
5export declare function isBoolean(val: any): val is boolean;
6
7declare module './ctor' {
8 interface XEUtilsMethods {
9 isBoolean: typeof isBoolean;
10 }
11}
12
13export default isBoolean