tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
18 lines (17 loc) • 536 B
TypeScript
import { PropType } from 'vue';
import type { Type } from './interface';
export declare const Props: {
readonly type: {
readonly type: PropType<Type>;
readonly default: () => Type;
readonly validator: (v: Type) => boolean;
};
readonly prohibit: BooleanConstructor;
readonly url: StringConstructor;
readonly underline: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly target: StringConstructor;
readonly icon: StringConstructor;
};