@fesjs/fes-design
Version:
fes-design for PC
29 lines (28 loc) • 782 B
TypeScript
import type { PropType, StyleValue } from 'vue';
import type { Shadow, Size } from './interface';
export declare const cardProps: {
readonly header: {
readonly type: StringConstructor;
readonly default: "";
};
readonly divider: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly bodyStyle: {
readonly type: PropType<StyleValue>;
readonly default: () => StyleValue;
};
readonly size: {
readonly type: PropType<Size>;
readonly default: "middle";
};
readonly shadow: {
readonly type: PropType<Shadow>;
readonly default: "always";
};
readonly bordered: {
readonly type: BooleanConstructor;
readonly default: true;
};
};