(event: WebhookEventInit)
| 63 | } |
| 64 | |
| 65 | export const onInit = (event: WebhookEventInit): void => { |
| 66 | if (WEBHOOK_EVENTS.init) { |
| 67 | callWebhookEndpoint<WebhookEventInit>(event) |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | type WebhookEventReset = { |
| 72 | tutorialId: string |
nothing calls this directly
no test coverage detected