tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
21 lines (20 loc) • 678 B
TypeScript
import { PropType } from 'vue';
import type { Resize } from './interface';
export declare const Props: {
readonly modelValue: StringConstructor;
readonly placeholder: StringConstructor;
readonly max: PropType<string | number>;
readonly rows: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly cols: StringConstructor;
readonly resize: {
readonly type: PropType<Resize>;
readonly default: () => Resize;
readonly validator: (v: Resize) => boolean;
};
readonly disabled: BooleanConstructor;
readonly autofocus: BooleanConstructor;
readonly name: StringConstructor;
};