kui-vue
Version:
A lightweight desktop UI component library suitable for Vue.js 2.
21 lines (16 loc) • 486 B
TypeScript
import Vue, { VueConstructor } from "vue";
/** TextArea component props */
export interface TextAreaProps {
value?: string | number | Record<string, any> | any[];
theme?: string;
size?: string;
disabled?: boolean;
}
/** TextArea component instance */
export interface TextArea extends Vue {
$props: TextAreaProps;
$emit(event: string, ...args: any[]): void;
}
/** TextArea Vue component type */
declare const TextArea: VueConstructor<TextArea>;
export default TextArea;