UNPKG

@jiaozhiye/qm-design-vue

Version:

A Component Library for Vue3.0

40 lines (39 loc) 2.07 kB
import type { PropType, ExtractPropTypes } from 'vue'; import type { ComponentSize, JSXElement } from '../../_utils/types'; export declare const _props: { alignment: { type: PropType<"top" | "center" | "bottom">; default: string; }; direction: { type: PropType<"vertical" | "horizontal">; default: string; }; arrangement: { type: PropType<"center" | "left" | "right">; default: string; }; size: { type: PropType<ComponentSize>; validator: (val: string) => boolean; }; wrap: { type: BooleanConstructor; }; spacer: { type: PropType<string | JSXElement>; default: null; validator: (val: any) => boolean; }; class: import("element-plus/es/utils/vue/props/types").EpPropFinalized<(new (...args: any[]) => string | Record<string, boolean> | (string | Record<string, boolean>)[]) | (() => import("element-plus/es/utils/typescript").Arrayable<string | Record<string, boolean>>) | ((new (...args: any[]) => string | Record<string, boolean> | (string | Record<string, boolean>)[]) | (() => import("element-plus/es/utils/typescript").Arrayable<string | Record<string, boolean>>) | null)[], unknown, unknown, "", boolean>; style: import("element-plus/es/utils/vue/props/types").EpPropFinalized<(new (...args: any[]) => string | false | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue) | ((new (...args: any[]) => string | false | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue) | null)[], unknown, unknown, "", boolean>; prefixCls: { readonly type: PropType<string>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; fill: BooleanConstructor; fillRatio: import("element-plus/es/utils/vue/props/types").EpPropFinalized<NumberConstructor, unknown, unknown, 100, boolean>; }; export type SpaceProps = ExtractPropTypes<typeof _props>;