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