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