UNPKG

@minto-ai/mt-ui

Version:

UI组件库

36 lines (35 loc) 870 B
import { ExtractPropTypes, PropType } from 'vue'; declare const emptyProps: { /** * 自定义图片 */ readonly image: { readonly type: StringConstructor; readonly default: ""; }; /** * 图片宽度 */ readonly imageWidth: { readonly type: PropType<string | number>; readonly validator: (value: number | string) => boolean; readonly default: "50%"; }; /** * 描述 */ readonly description: { readonly type: StringConstructor; readonly default: ""; }; /** * 上下的内边距 */ readonly verticalPadding: { readonly type: NumberConstructor; readonly validator: (value: number) => boolean; readonly default: 20; }; }; export type EmptyProps = ExtractPropTypes<typeof emptyProps>; export { emptyProps };