various-ui
Version:
This is a test version of the Vue 3 component library
24 lines (23 loc) • 693 B
TypeScript
import { ExtractPropTypes, PropType } from "vue";
export declare const UiLoadingPropsOption: {
readonly message: {
readonly type: StringConstructor;
readonly default: "加载中";
};
readonly visible: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly zIndex: {
readonly type: NumberConstructor;
};
readonly mode: {
readonly type: PropType<"fixed" | "absolute">;
readonly default: "absolute";
};
readonly icon: {
readonly type: StringConstructor;
readonly default: "loading";
};
};
export type UiLoadingProps = ExtractPropTypes<typeof UiLoadingPropsOption>;