be5412e65c3e3a570f205b5fe857ee4cb4e10c2bf9523a87b519328fe9c04fe94f2f87db53d8422690e291103167020ceeb35bdf4e94e0bc2850a2bf560bed 630 B

123456789
  1. export { isArray, isFunction, isObject, isString, isDate, isPromise, isSymbol, isPlainObject, } from '@vue/shared';
  2. export declare const isUndefined: (val: any) => val is undefined;
  3. export declare const isBoolean: (val: any) => val is boolean;
  4. export declare const isNumber: (val: any) => val is number;
  5. export declare const isEmpty: (val: unknown) => boolean;
  6. export declare const isElement: (e: unknown) => e is Element;
  7. export declare const isPropAbsent: (prop: unknown) => prop is null | undefined;
  8. export declare const isStringNumber: (val: string) => boolean;
  9. export declare const isWindow: (val: unknown) => val is Window;