UNPKG
@farris/devkit-vue
Version:
latest (0.0.9-ba-beta.2)
0.0.9
0.0.9-ba-beta.2
0.0.9-ba-beta.1
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.2
farris-design.gitee.io/farris-vue/
@farris/devkit-vue
/
types
/
common
/
utils
/
ObjectUtil.d.ts
15 lines
(14 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * 对象工具类 */
declare
class
ObjectUtil
{
/** * 是否是对象 */
static
isObject
(value: any)
: boolean;
/** * 判断对象是否为空 */
static
isEmpty
(value: any)
: boolean;
}
export
{ ObjectUtil };