| 267 | * @interface |
| 268 | */ |
| 269 | export interface ErrorResponse { |
| 270 | error: { |
| 271 | message: string; |
| 272 | type: string | null; |
| 273 | param: string | null; |
| 274 | code: string | null; |
| 275 | }; |
| 276 | provider: string; |
| 277 | } |
| 278 | |
| 279 | /** |
| 280 | * The structure of a image generation response |
nothing calls this directly
no outgoing calls
no test coverage detected