From 4d10346bf9db6122ec32becf3cc3e067df37503c Mon Sep 17 00:00:00 2001 From: Jahir Fiquitiva Date: Fri, 22 Mar 2024 14:30:58 -0500 Subject: [PATCH] chore: add missing property in types --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index 079d163..bbad64a 100644 --- a/index.d.ts +++ b/index.d.ts @@ -13,6 +13,7 @@ export interface ComposeOptions extends InboxOptions { bcc?: string; subject?: string; body?: string; + encodeBody?: boolean; } export function getEmailClients(): Promise< @@ -46,6 +47,7 @@ export function openComposer({ subject, body, defaultEmailLabel, + encodeBody, }?: ComposeOptions): Promise<{ app: string; title: string } | null>; export class EmailException {