| 1 | export interface MailpitAttachment { |
| 2 | ContentID: string; |
| 3 | ContentType: string; |
| 4 | FileName: string; |
| 5 | PartID: string; |
| 6 | Size: number; |
| 7 | } |
| 8 | |
| 9 | export interface MailpitEmailAddress { |
| 10 | Address: string; |
nothing calls this directly
no outgoing calls
no test coverage detected