UNPKG

tyh-ui2

Version:

The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.

15 lines (14 loc) 466 B
import { PropType } from 'vue'; import type { Size } from './interface'; export declare const Props: { readonly modelValue: StringConstructor; readonly label: StringConstructor; readonly name: StringConstructor; readonly disabled: BooleanConstructor; readonly border: BooleanConstructor; readonly size: { readonly type: PropType<Size>; readonly default: () => Size; readonly validator: (v: Size) => boolean; }; };