vue-devui
Version:
DevUI components based on Vite and Vue3
8 lines (7 loc) • 334 B
TypeScript
import type { VNode } from 'vue';
import { BindingType, TargetHTMLElement } from './loading-types';
declare const LoadingDirective: {
mounted: (el: TargetHTMLElement, binding: BindingType, vnode: VNode) => void;
updated: (el: TargetHTMLElement, binding: BindingType, vnode: VNode) => void;
};
export default LoadingDirective;