dk-plus
Version:
9 lines (8 loc) • 310 B
TypeScript
import type { Directive, ComponentPublicInstance, App } from 'vue';
export interface LoadingInterface extends HTMLElement {
vm: ComponentPublicInstance;
loadingInstance: App | null;
originalPosition: string;
style: CSSStyleDeclaration;
}
export declare const DirectiveLoading: () => Directive;