@vendasta/store
Version:
Components and data for Store
11 lines (10 loc) • 391 B
TypeScript
import { ControlType, FieldBase, FieldBaseOptions } from './field-base';
export declare type TextboxType = 'text';
export interface TextBoxFieldOptions extends FieldBaseOptions {
textboxType: TextboxType;
}
export declare class TextboxField extends FieldBase<string> {
readonly controlType: ControlType;
textboxType: TextboxType;
constructor(options: TextBoxFieldOptions);
}