diff --git a/packages/common/types/control.types.ts b/packages/common/types/control.types.ts index 1bc8e6d..037eaaf 100644 --- a/packages/common/types/control.types.ts +++ b/packages/common/types/control.types.ts @@ -35,11 +35,6 @@ export interface ControlBase { label?: string; placeholder?: string; validators?: string[]; // TODO: implement validator type - options?: string[] | ControlOption[]; -} - -export interface TextInput extends ControlBase { - type: Exclude; } export interface Checkbox extends ControlBase {