(text: string)
| 94 | // --------------------------------------------------------------------------- |
| 95 | |
| 96 | function textPart(text: string): ContentPart { |
| 97 | return { type: 'text', text }; |
| 98 | } |
| 99 | |
| 100 | function textOf(message: Message | undefined): string { |
| 101 | return ( |
no outgoing calls
no test coverage detected