@textbus/editor
Version:
Textbus is a rich text editor and framework that is highly customizable and extensible to achieve rich wysiwyg effects.
17 lines (16 loc) • 476 B
TypeScript
import { AttrState, FormTextareaParams, FormItem } from './help';
export declare class FormTextarea implements FormItem<string> {
private config;
elementRef: HTMLDivElement;
name: string;
private input;
private sub?;
private readonly btn?;
private readonly feedbackEle;
constructor(config: FormTextareaParams);
reset(): void;
update(value?: any): void;
getAttr(): AttrState<string>;
validate(): boolean;
private uploaded;
}