pm-controls
Version:
ProModel Controls
23 lines (22 loc) • 630 B
TypeScript
import { ElementRef, EventEmitter } from '@angular/core';
export declare class TextareaComponent {
Text: string;
Watermark: string;
TextareaClass: string;
Width: string;
MaxWidth: string;
IsDisabled: boolean;
TextChange: EventEmitter<string>;
BlurChange: EventEmitter<any>;
FocusChange: EventEmitter<any>;
KeyUp: EventEmitter<any>;
KeyDown: EventEmitter<any>;
textarea: ElementRef;
constructor();
onChange(newValue: any): void;
onBlur(value: any): void;
onFocus(value: any): void;
onKeyUp(event: any): void;
onKeyDown(event: any): void;
Focus(): void;
}