UNPKG

element-plus

Version:

A Component Library for Vue 3

7 lines (6 loc) 369 B
export { isArray, isFunction, isObject, isString, isDate, isPromise, isSymbol, } from '@vue/shared'; export { isBoolean, isNumber } from '@vueuse/core'; export { isVNode } from 'vue'; export declare const isUndefined: (val: any) => val is undefined; export declare const isEmpty: (val: unknown) => boolean; export declare const isElement: (e: unknown) => e is Element;