UNPKG

v4web-components

Version:
18 lines (17 loc) 428 B
import { EventEmitter } from '../../../stencil-public-runtime'; export declare class LabDsTextArea { value: string; valueState: string; maxLength: number; minLength: number; rows: number; cols: number; titleInput: string; label: string; disabled: boolean; helperText: string; state: 'error' | 'success' | 'default'; changeInput: EventEmitter<string>; handleChange(event: any): void; render(): any; }