@@ -118,7 +118,6 @@ export namespace Bm {
118118 export type ExpirationCacheDeleteExpired = Promise < void > ;
119119 export type ThunderbirdGetDownloadableAttachment = ThunderbirdAttachment [ ] ;
120120 export type ThunderbirdGetCurrentUser = string | undefined ;
121- export type ThunderbirdMsgGet = { attachments : messenger . messages . MessageAttachment [ ] ; messagePart : messenger . messages . MessagePart } ;
122121 export type ThunderbirdOpenPassphraseDialog = Promise < void > ;
123122 export type ThunderbirdInitiateAttachmentDownload = Promise < void > ;
124123 // eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -138,8 +137,7 @@ export namespace Bm {
138137 | ExpirationCacheDeleteExpired
139138 | AjaxGmailAttachmentGetChunk
140139 | ConfirmationResult
141- | ThunderbirdGetDownloadableAttachment
142- | ThunderbirdMsgGet ;
140+ | ThunderbirdGetDownloadableAttachment ;
143141 }
144142
145143 export type AnyRequest =
@@ -251,7 +249,6 @@ export class BrowserMsg {
251249 BrowserMsg . sendAwait ( undefined , 'thunderbirdInitiateAttachmentDownload' , bm , true ) as Promise < Bm . Res . ThunderbirdInitiateAttachmentDownload > ,
252250 thunderbirdGetCurrentUser : ( ) =>
253251 BrowserMsg . sendAwait ( undefined , 'thunderbirdGetCurrentUser' , undefined , true ) as Promise < Bm . Res . ThunderbirdGetCurrentUser > ,
254- thunderbirdMsgGet : ( ) => BrowserMsg . sendAwait ( undefined , 'thunderbirdMsgGet' , undefined , true ) as Promise < Bm . Res . ThunderbirdMsgGet > ,
255252 thunderbirdOpenPassphraseDiaglog : ( bm : Bm . ThunderbirdOpenPassphraseDialog ) =>
256253 BrowserMsg . sendAwait ( undefined , 'thunderbirdOpenPassphraseDialog' , bm , true ) as Promise < Bm . Res . ThunderbirdOpenPassphraseDialog > ,
257254 } ,
0 commit comments