From a868e4f55003176f4eee2dedd396382ac99a546f Mon Sep 17 00:00:00 2001 From: Ayo Date: Sat, 5 Nov 2022 08:29:16 +0100 Subject: [PATCH] fix: broken config type --- packages/common/types/control.types.ts | 5 ----- 1 file changed, 5 deletions(-) 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 {