From 9634398538707665065bc3b1278b041322ffee28 Mon Sep 17 00:00:00 2001 From: Steven Crocker Date: Thu, 25 Sep 2025 22:07:56 -0500 Subject: [PATCH] Removed trailing commas from newly added types for consistency --- types/config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 }