@minto-ai/mt-ui
Version:
UI组件库
10 lines (9 loc) • 308 B
TypeScript
import { PropType } from 'vue';
declare const componentSize: readonly ["normal", "small", "large"];
type ComponentSize = typeof componentSize[number];
declare const sizeProp: {
type: PropType<ComponentSize>;
default: string;
validator: (value: ComponentSize) => boolean;
};
export { sizeProp, };