UNPKG

404 BTypeScriptView Raw
1import { ControlType, FieldBase, FieldBaseOptions } from './field-base';
2export interface Option {
3 value: string;
4 label: string;
5}
6export interface DropDownFieldOptions extends FieldBaseOptions {
7 options: Option[];
8}
9export declare class DropdownField extends FieldBase<string> {
10 readonly controlType: ControlType;
11 options: Option[];
12 constructor(options: DropDownFieldOptions);
13}