| 15 | } |
| 16 | |
| 17 | export default class Attachment implements AttachmentData { |
| 18 | content: string; |
| 19 | filename: string; |
| 20 | type?: string; |
| 21 | disposition?: string; |
| 22 | contentId?: string; |
| 23 | |
| 24 | constructor(data?: AttachmentData); |
| 25 | |
| 26 | fromData(data: AttachmentData): void; |
| 27 | setContent(content: string): void; |
| 28 | setFilename(filename: string): void; |
| 29 | setType(type: string): void; |
| 30 | setDisposition(disposition: string): void; |
| 31 | setContentId(contentId: string): void; |
| 32 | toJSON(): AttachmentJSON; |
| 33 | } |
nothing calls this directly
no outgoing calls
no test coverage detected