1
0
Fork 0

Extend WebhookPayload interface with `inputs` property

pull/836/head
Oleksandr Chaikovskyi 2021-06-07 21:40:34 +03:00
parent c9af6bb1b3
commit cf77bb207f
1 changed files with 3 additions and 0 deletions

View File

@ -40,4 +40,7 @@ export interface WebhookPayload {
id: number id: number
[key: string]: any [key: string]: any
} }
inputs?: {
[key: string]: string | null | undefined
}
} }