| 1 | export interface AttachmentData { |
| 2 | content: string; |
| 3 | filename: string; |
| 4 | type?: string; |
| 5 | disposition?: string; |
| 6 | contentId?: string; |
| 7 | } |
| 8 | |
| 9 | export interface AttachmentJSON { |
| 10 | content: string; |
nothing calls this directly
no outgoing calls
no test coverage detected