(condition: any, message: string)
| 572 | |
| 573 | const requireUser = (condition: any, message: string): void => { |
| 574 | if (!condition) throw new UserError(message); |
| 575 | }; |
| 576 | |
| 577 | type ProcessingKind = "chat" | "search" | "image" | "video"; |
| 578 | |
| 579 | const PROCESSING_TEXT: Record<ProcessingKind, string> = { |
no outgoing calls
no test coverage detected