@kre-form/ant
Version:
14 lines (13 loc) • 420 B
TypeScript
import { FieldType } from "@kre-form/core";
export declare class KreFormFieldSelect extends FieldType {
_defaultValue: string;
_defaultValues: string[];
selectType: string;
listOfSelectedValue: any;
getModelValue: any;
readonly defaultValue: string | null;
readonly defaultValues: string[] | null;
getSelectText(): string;
selectedChange(e: any): void;
readonly clear: boolean;
}