| 31 | // --------------------------------------------------------------------------- |
| 32 | |
| 33 | export interface FileOutputEvent { |
| 34 | type: "file_output"; |
| 35 | filePath: string; |
| 36 | filename: string; |
| 37 | mimeType?: string; |
| 38 | caption?: string; |
| 39 | } |
| 40 | |
| 41 | export type FileOutputCallback = (event: FileOutputEvent) => void; |
| 42 |
nothing calls this directly
no outgoing calls
no test coverage detected