t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
23 lines (22 loc) • 733 B
TypeScript
import type { PropType, ExtractPropTypes } from 'vue';
import type { CardShadowType } from './interface';
export declare const Props: {
readonly title: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly round: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly padding: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly shadow: {
readonly type: PropType<CardShadowType>;
readonly default: () => CardShadowType;
readonly validator: (val: CardShadowType) => boolean;
};
};
export declare type CardPropsType = ExtractPropTypes<typeof Props>;