(error: unknown)
| 25 | } |
| 26 | |
| 27 | function errorMessage(error: unknown): string { |
| 28 | if (error instanceof Error) { |
| 29 | return `${error.name}: ${error.message}`; |
| 30 | } |
| 31 | return String(error); |
| 32 | } |
| 33 | |
| 34 | export class ElatoVoiceSession extends DurableObject<Env> { |
| 35 | private isGenerating = false; |
no outgoing calls
no test coverage detected