@vectrejs/vectre
Version:
Complete implementation of Spectre.css on Vue 2.x
24 lines (23 loc) • 618 B
TypeScript
import * as tsx from 'vue-tsx-support';
export interface FormTextareaEvents {
onInput: (value: any) => void;
}
export declare const FormTextarea: tsx.TsxComponent<object & Record<never, any> & {
__attrs: ((data: string) => void)[];
} & Record<string, unknown> & {
__attrs: () => any;
} & import("vue").default & {
__listeners: ((data: string) => void)[];
} & {
__listeners: () => any;
}, {} & {
disabled?: boolean;
value?: string;
}, FormTextareaEvents, {}, {
onInput({ target: { value } }: any): void;
} & {
placeholder: string;
} & {
value: string;
disabled: boolean;
}>;