fix: broken config type
This commit is contained in:
parent
0a0b8ae809
commit
a868e4f550
1 changed files with 0 additions and 5 deletions
|
@ -35,11 +35,6 @@ export interface ControlBase {
|
||||||
label?: string;
|
label?: string;
|
||||||
placeholder?: string;
|
placeholder?: string;
|
||||||
validators?: string[]; // TODO: implement validator type
|
validators?: string[]; // TODO: implement validator type
|
||||||
options?: string[] | ControlOption[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TextInput extends ControlBase {
|
|
||||||
type: Exclude<InputType, "checkbox" | "radio" | "submit" | "button">;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Checkbox extends ControlBase {
|
export interface Checkbox extends ControlBase {
|
||||||
|
|
Loading…
Reference in a new issue