UNPKG

tyh-ui2

Version:

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

19 lines (18 loc) 542 B
import { PropType } from 'vue'; import type { Position } from './interface'; export declare const Props: { readonly position: { readonly type: PropType<Position>; readonly default: () => Position; readonly validator: (v: Position) => boolean; }; readonly color: { readonly type: StringConstructor; readonly default: () => string; }; readonly margin: { readonly type: StringConstructor; readonly default: () => string; }; readonly icon: StringConstructor; };