UNPKG

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