From dd4e9014a2be1b246f711d12df6214dc7d4fbfa2 Mon Sep 17 00:00:00 2001 From: Junseo Park Date: Sat, 27 Feb 2021 14:51:45 +0900 Subject: [PATCH] chore: export DeveloperBot --- utils/Yup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/Yup.ts b/utils/Yup.ts index e16b197..9383191 100644 --- a/utils/Yup.ts +++ b/utils/Yup.ts @@ -137,7 +137,7 @@ export const DeveloperBotSchema: Yup.SchemaOf = Yup.object({ webhook: Yup.string().matches(HTTPProtocol, 'http:// 또는 https:// 로 시작해야합니다.').matches(Url, '올바른 웹훅 URL을 입력해주세요.').max(64, 'URL은 최대 64자까지만 가능합니다.') }) -interface DeveloperBot { +export interface DeveloperBot { webhook: string | null }