diff --git a/types/config.ts b/types/config.ts index 9e88dc9..014c424 100644 --- a/types/config.ts +++ b/types/config.ts @@ -54,14 +54,14 @@ export type Notification = { recipientUrl?: string timeZone?: string gracePeriod?: number - skipNotificationIds?: string[], + skipNotificationIds?: string[] webhook?: Webhook } export type Webhook = { - url: string, - method?: 'POST' | 'GET', - headers?: { [key: string]: string | number }, + url: string + method?: 'POST' | 'GET' + headers?: { [key: string]: string | number } timeout?: number }