14 lines
227 B
TypeScript
14 lines
227 B
TypeScript
export interface Mail {
|
|
id: string;
|
|
from: string;
|
|
subject: string;
|
|
body: string;
|
|
date: string;
|
|
read: boolean;
|
|
starred: boolean;
|
|
attachments?: {
|
|
filename: string;
|
|
size: number;
|
|
type: string;
|
|
}[];
|
|
}
|