Removed trailing commas from newly added types for consistency
parent
371094a499
commit
9634398538
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue