chore: first commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
export interface MailboxInfo {
|
||||
id: string;
|
||||
name: string;
|
||||
path: string;
|
||||
specialUse: string | null | false;
|
||||
modifyIndex: number;
|
||||
subscribed: boolean;
|
||||
total?: number;
|
||||
unseen?: number;
|
||||
size?: number;
|
||||
retention?: number;
|
||||
hidden?: boolean;
|
||||
}
|
||||
|
||||
export interface MailboxListResponse {
|
||||
success: true;
|
||||
results: MailboxInfo[];
|
||||
}
|
||||
|
||||
export interface MailboxCreateResponse {
|
||||
success: true;
|
||||
id: string;
|
||||
}
|
||||
|
||||
export interface MailboxDetailsResponse extends MailboxInfo {
|
||||
success: true;
|
||||
}
|
||||
Reference in New Issue
Block a user