UNPKG

vue-devui

Version:

DevUI components based on Vite and Vue3

9 lines (8 loc) 437 B
import type { VNode, ComponentInternalInstance } from 'vue'; export declare const isValid: (value?: unknown) => boolean; export declare const isEmptyElement: (c?: VNode) => boolean; export declare const flattenChildren: (children?: VNode[], filterEmpty?: boolean) => VNode[]; export declare const findDOMNode: (instance: (ComponentInternalInstance & { $el: VNode['el']; }) | null) => VNode['el']; export declare const isFF: boolean;