chore: export DeveloperBot

This commit is contained in:
Junseo Park 2021-02-27 14:51:45 +09:00
parent 79c13beaaa
commit dd4e9014a2

View File

@ -137,7 +137,7 @@ export const DeveloperBotSchema: Yup.SchemaOf<DeveloperBot> = Yup.object({
webhook: Yup.string().matches(HTTPProtocol, 'http:// 또는 https:// 로 시작해야합니다.').matches(Url, '올바른 웹훅 URL을 입력해주세요.').max(64, 'URL은 최대 64자까지만 가능합니다.')
})
interface DeveloperBot {
export interface DeveloperBot {
webhook: string | null
}