t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
30 lines (29 loc) • 935 B
TypeScript
import type { PropType, ExtractPropTypes } from 'vue';
import type { ExpandCardImageListType } from './interface';
export declare const Props: {
readonly imageList: {
readonly type: PropType<ExpandCardImageListType>;
readonly default: () => string[];
};
readonly round: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly expandIndex: {
readonly type: NumberConstructor;
readonly default: () => number;
};
readonly color: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly width: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
readonly height: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
};
export declare type ExpandCardPropsType = ExtractPropTypes<typeof Props>;