UNPKG

vexip-ui

Version:

A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good

13 lines (12 loc) 360 B
import { SpinProps } from '../../components/spin'; import { ObjectDirective, VNode } from 'vue'; interface LoadingRecord { spin: VNode; props: SpinProps; originPosition: string; } type LoadingElement = HTMLElement & { __loading?: LoadingRecord; }; export declare const vLoading: ObjectDirective<LoadingElement, boolean | SpinProps>; export {};