Removed trailing commas from newly added types for consistency

pull/143/head
Steven Crocker 2025-09-25 22:07:56 -05:00
parent 371094a499
commit 9634398538
1 changed files with 4 additions and 4 deletions

View File

@ -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
}