(event: WebhookEventReset)
| 73 | } |
| 74 | |
| 75 | export const onReset = (event: WebhookEventReset): void => { |
| 76 | if (WEBHOOK_EVENTS.reset) { |
| 77 | callWebhookEndpoint<WebhookEventReset>(event) |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | type WebhookEventContinue = { |
| 82 | tutorialId: string |
nothing calls this directly
no test coverage detected