@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) • 403 B
TypeScript
import { AttrState, FormItem, FormNumberParams } from './help';
export declare class FormNumber implements FormItem<number> {
private config;
elementRef: HTMLDivElement;
name: string;
private input;
private readonly feedbackEle;
constructor(config: FormNumberParams);
reset(): void;
update(value?: any): void;
getAttr(): AttrState<number>;
validate(): boolean;
}