From 2c4bfab9db0a79918e5cac4cc26410f390d6dbc7 Mon Sep 17 00:00:00 2001 From: gingervitis Date: Fri, 29 Jan 2021 10:38:09 -0800 Subject: [PATCH] cleanup --- web/types/config-section.ts | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/web/types/config-section.ts b/web/types/config-section.ts index b82f34b06..54567782e 100644 --- a/web/types/config-section.ts +++ b/web/types/config-section.ts @@ -1,34 +1,5 @@ // TS types for elements on the Config pages -export interface TextFieldProps { - apiPath: string; - fieldName: string; - - configPath?: string; - disabled?: boolean; - initialValue?: string; - label?: string; - maxLength?: number; - placeholder?: string; - required?: boolean; - tip?: string; - type?: string; - value?: string; - onSubmit?: () => void; - onBlur?: () => void; - onChange?: () => void; -} - -export interface ToggleSwitchProps { - apiPath: string; - fieldName: string; - - checked?: boolean; - configPath?: string; - disabled?: boolean; - label?: string; - tip?: string; -} // for dropdown export interface SocialHandleDropdownItem {