element-plus
Version:
A Component Library for Vue 3
13 lines (12 loc) • 467 B
TypeScript
import type { DirectiveBinding } from 'vue';
import type { ILoadingInstance } from './loading.type';
declare const INSTANCE_NAME = "ElLoading";
export interface ElementLoading extends HTMLElement {
[INSTANCE_NAME]?: ILoadingInstance;
}
declare const vLoading: {
mounted(el: ElementLoading, binding: DirectiveBinding): void;
updated(el: ElementLoading, binding: DirectiveBinding): void;
unmounted(el: ElementLoading): void;
};
export default vLoading;