various-ui
Version:
This is a test version of the Vue 3 component library
16 lines (15 loc) • 376 B
TypeScript
/// <reference types="node" />
export type UiLoadingShowOption = {
icon?: string;
delay?: number;
message?: string;
};
export type UiLoadingHandles = {
timer?: NodeJS.Timeout;
delay: boolean;
open: (config?: UiLoadingShowOption) => void;
close: () => void;
};
declare const $loading: UiLoadingHandles;
export { $loading };
export default $loading;