UNPKG

@ithinkdt/naive

Version:

iThinkDT Naive UI

15 lines (11 loc) 319 B
import { Directive } from 'vue' export type SpinDirectiveProps = void | undefined | string | boolean export type SpinDirective = Directive< HTMLElement & { readonly dataset: DOMStringMap & { spinTip?: string } }, SpinDirectiveProps > export declare const vSpin: SpinDirective