UNPKG

@jiaozhiye/qm-design-vue

Version:

A Component Library for Vue3.0

23 lines (22 loc) 624 B
import type { PropType, ExtractPropTypes, StyleValue } from 'vue'; import type { Arrayable, ComponentSize } from '../../_utils/types'; export declare const _props: { size: { type: PropType<ComponentSize>; validator: (val: string) => boolean; }; type: { type: PropType<"default" | "simple">; default: string; }; description: { type: StringConstructor; }; class: { type: PropType<string | Arrayable<Record<string, boolean>>>; }; style: { type: PropType<StyleValue>; }; }; export type EmptyProps = ExtractPropTypes<typeof _props>;