(event: WebhookEvent, data: unknown)
| 928 | // Webhook notification interface for loose coupling |
| 929 | export interface IWebhookNotifier { |
| 930 | triggerWebhook(event: WebhookEvent, data: unknown): Promise<void>; |
| 931 | } |
| 932 | |
| 933 | // OAuth types |
no outgoing calls
no test coverage detected