comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
29 lines (27 loc) • 840 B
TypeScript
import { Component, PropType, VNode } from 'vue';
export declare const loadingProps: {
readonly icon: PropType<Component | VNode>;
readonly defaultVisible: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly text: StringConstructor;
readonly blur: BooleanConstructor;
readonly background: StringConstructor;
readonly color: StringConstructor;
readonly target: {
new (): HTMLElement;
prototype: HTMLElement;
};
readonly global: BooleanConstructor;
};
export type LoadingProps = {
readonly icon?: Component | VNode;
readonly defaultVisible?: boolean;
readonly text?: string;
readonly blur?: boolean;
readonly background?: string;
readonly color?: string;
readonly target?: HTMLElement;
readonly global?: boolean;
};