t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
29 lines (28 loc) • 858 B
TypeScript
import type { PropType, ExtractPropTypes } from 'vue';
export declare const Props: {
readonly content: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly contentSize: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly contentColor: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly imageSrc: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly imageSize: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
readonly background: {
readonly type: StringConstructor;
readonly default: () => string;
};
};
export declare type EmptyPropsType = ExtractPropTypes<typeof Props>;