zview-plus
Version:
基于 Vue3 的 UI 组件库
22 lines (21 loc) • 520 B
TypeScript
import type { ExtractPropTypes, StyleValue, PropType } from "vue";
export declare const cardProps: {
header: {
type: StringConstructor;
default: string;
};
handle: {
type: StringConstructor;
default: string;
};
bodyStyle: {
type: PropType<StyleValue>;
default: string;
};
shadow: {
type: StringConstructor;
values: string[];
default: string;
};
};
export declare type CardProps = ExtractPropTypes<typeof cardProps>;