UNPKG

tyh-ui2

Version:

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

21 lines (20 loc) 634 B
import { PropType } from 'vue'; import type { Position, Type } from './interface'; export declare const Props: { readonly title: StringConstructor; readonly message: StringConstructor; readonly time: { readonly type: NumberConstructor; readonly default: () => number; }; readonly position: { readonly type: PropType<Position>; readonly default: () => Position; readonly validator: (v: Position) => boolean; }; readonly close: BooleanConstructor; readonly type: { readonly type: PropType<Type>; readonly validator: (v: Type) => boolean; }; };