UNPKG

@anypoint-web-components/anypoint-input

Version:
23 lines (21 loc) 649 B
import {TemplateResult, LitElement, CSSResult} from 'lit-element'; import {AnypointInputMixin} from './AnypointInputMixin'; export declare class AnypointTextarea extends AnypointInputMixin(LitElement) { get styles(): CSSResult|CSSResult[]; get _labelClass(): string; get _infoAddonClass(): string; get _errorAddonClass(): string; /** * Binds this to the `<textarea>`'s `cols` property. */ cols: number|undefined; /** * Binds this to the `<textarea>`'s `rows` property. */ rows: number|undefined; /** * Binds this to the `<textarea>`'s `wrap` property. */ wrap: boolean|undefined; render(): TemplateResult; }