UNPKG

391 BTypeScriptView Raw
1import { ControlType, FieldBase, FieldBaseOptions } from './field-base';
2export declare type TextboxType = 'text';
3export interface TextBoxFieldOptions extends FieldBaseOptions {
4 textboxType: TextboxType;
5}
6export declare class TextboxField extends FieldBase<string> {
7 readonly controlType: ControlType;
8 textboxType: TextboxType;
9 constructor(options: TextBoxFieldOptions);
10}