You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.3 KiB
26 lines
1.3 KiB
import type { LoadingOptionsResolved } from './types';
|
|
export declare function createLoadingComponent(options: LoadingOptionsResolved): {
|
|
setText: (text: string) => void;
|
|
removeElLoadingChild: () => void;
|
|
close: () => void;
|
|
handleAfterLeave: () => void;
|
|
vm: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
$el: HTMLElement;
|
|
originalPosition: import("vue").Ref<string>;
|
|
originalOverflow: import("vue").Ref<string>;
|
|
visible: import("vue").Ref<boolean>;
|
|
parent: import("vue").Ref<import("./types").LoadingParentElement>;
|
|
background: import("vue").Ref<string>;
|
|
svg: import("vue").Ref<string>;
|
|
svgViewBox: import("vue").Ref<string>;
|
|
spinner: import("vue").Ref<string | boolean>;
|
|
text: import("vue").Ref<string>;
|
|
fullscreen: import("vue").Ref<boolean>;
|
|
lock: import("vue").Ref<boolean>;
|
|
customClass: import("vue").Ref<string>;
|
|
target: import("vue").Ref<HTMLElement>;
|
|
beforeClose?: import("vue").Ref<(() => boolean) | undefined> | undefined;
|
|
closed?: import("vue").Ref<(() => void) | undefined> | undefined;
|
|
};
|
|
export declare type LoadingInstance = ReturnType<typeof createLoadingComponent>;
|