From a65514f70704b7887001bcba7c11b0cceb4cf900 Mon Sep 17 00:00:00 2001 From: Eli Ribble <eli@theribbles.org> Date: Thu, 29 Aug 2024 11:25:59 -0700 Subject: [PATCH] Add note to add support for sentAt. It's in the spec, and I get it from the server, but it's not in the client library I'm using. --- src/client/types.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/client/types.tsx b/src/client/types.tsx index da345c1..f2aa964 100644 --- a/src/client/types.tsx +++ b/src/client/types.tsx @@ -11,7 +11,9 @@ export interface IMailbox extends client.IMailboxProperties { emailIds: Array<string> | null; } -export interface IEmail extends client.IEmailProperties {} +export interface IEmail extends client.IEmailProperties { + //sentAt: IutcDate|null, +} export interface IAccount extends client.IAccount { id: string;