| 21 | * Message content type. |
| 22 | */ |
| 23 | export interface ContentType { |
| 24 | type: string; |
| 25 | text?: string; |
| 26 | image_url?: { |
| 27 | url: string; |
| 28 | }; |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Global type for parameters sent to the providers. |
nothing calls this directly
no outgoing calls
no test coverage detected