tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
15 lines (14 loc) • 482 B
TypeScript
import { PropType } from 'vue';
import type { alertType } from './interface';
export declare const Props: {
readonly type: {
readonly type: PropType<alertType>;
readonly default: () => alertType;
readonly validator: (v: alertType) => boolean;
};
readonly message: StringConstructor;
readonly icon: StringConstructor;
readonly close: BooleanConstructor;
readonly center: BooleanConstructor;
readonly simple: BooleanConstructor;
};