@textbus/editor
Version:
Textbus is a rich text editor and framework that is highly customizable and extensible to achieve rich wysiwyg effects.
12 lines (11 loc) • 343 B
TypeScript
import { FormStaticParams, AttrState, FormItem } from './help';
export declare class FormStatic implements FormItem {
private config;
readonly elementRef: HTMLElement;
readonly name: string;
constructor(config: FormStaticParams);
reset(): void;
update(): void;
getAttr(): AttrState<any>;
validate(): boolean;
}