mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-18 06:38:12 -04:00
19 lines
399 B
TypeScript
19 lines
399 B
TypeScript
/**
|
|
* Email attachment type.
|
|
*/
|
|
export type EmailAttachment = {
|
|
/** The ID of the attachment */
|
|
id: number;
|
|
|
|
/** The ID of the email the attachment belongs to */
|
|
emailId: number;
|
|
|
|
/** The filename of the attachment */
|
|
filename: string;
|
|
|
|
/** The MIME type of the attachment */
|
|
mimeType: string;
|
|
|
|
/** The size of the attachment in bytes */
|
|
filesize: number;
|
|
} |