t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
48 lines (47 loc) • 1.59 kB
TypeScript
import type { RendererNode, RendererElement, ComputedOptions, MethodOptions, ExtractPropTypes, PropType, VNode, Component } from 'vue';
import type { HandleEventInterface } from '../../_interface';
export declare const Props: {
readonly show: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly close: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly text: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly fontColor: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly iconColor: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly fontSize: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly background: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly opacity: {
readonly type: NumberConstructor;
readonly default: () => number | null;
};
readonly icon: {
readonly type: PropType<VNode<RendererNode, RendererElement, {
[key: string]: any;
}> | Component<any, any, any, ComputedOptions, MethodOptions>>;
readonly default: () => null;
};
readonly closeEnd: {
readonly type: PropType<HandleEventInterface>;
readonly default: () => null;
};
};
export declare type LoadingPropsType = ExtractPropTypes<typeof Props>;