UNPKG

tyh-ui2

Version:

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

16 lines (15 loc) 466 B
import { PropType } from 'vue'; import type { Type, Size } from './interface'; export declare const Props: { readonly type: { readonly type: PropType<Type>; readonly default: () => Type; readonly validator: (v: Type) => boolean; }; readonly size: { readonly type: PropType<Size>; readonly validator: (v: Size) => boolean; }; readonly round: BooleanConstructor; readonly isClose: BooleanConstructor; };