@@ -99,7 +99,6 @@ export namespace Bm {
9999 export type PgpBlockRetry = { frameId : string ; messageSender : Dest } ;
100100 export type PgpBlockReady = { frameId : string ; messageSender : Dest } ;
101101 export type ThunderbirdOpenPassphraseDialog = { acctEmail : string ; longids : string } ;
102- export type ThunderbirdGetDownloadableAttachment = { attachments : messenger . messages . MessageAttachment [ ] } ;
103102 export type ThunderbirdInitiateAttachmentDownload = { decryptedFileName : string ; decryptedContent : Buf } ;
104103
105104 export namespace Res {
@@ -181,7 +180,6 @@ export namespace Bm {
181180 | PgpBlockReady
182181 | PgpBlockRetry
183182 | ConfirmationResult
184- | ThunderbirdGetDownloadableAttachment
185183 | ThunderbirdOpenPassphraseDialog
186184 | ThunderbirdInitiateAttachmentDownload
187185 | Ajax ;
@@ -247,8 +245,8 @@ export class BrowserMsg {
247245 BrowserMsg . sendAwait ( undefined , 'expirationCacheSet' , bm , true ) as Promise < Bm . Res . ExpirationCacheSet > ,
248246 expirationCacheDeleteExpired : ( bm : Bm . ExpirationCacheDeleteExpired ) =>
249247 BrowserMsg . sendAwait ( undefined , 'expirationCacheDeleteExpired' , bm , true ) as Promise < Bm . Res . ExpirationCacheDeleteExpired > ,
250- thunderbirdGetDownloadableAttachment : ( bm : Bm . ThunderbirdGetDownloadableAttachment ) =>
251- BrowserMsg . sendAwait ( undefined , 'thunderbirdGetDownloadableAttachment' , bm , true ) as Promise < Bm . Res . ThunderbirdGetDownloadableAttachment > ,
248+ thunderbirdGetDownloadableAttachment : ( ) =>
249+ BrowserMsg . sendAwait ( undefined , 'thunderbirdGetDownloadableAttachment' , undefined , true ) as Promise < Bm . Res . ThunderbirdGetDownloadableAttachment > ,
252250 thunderbirdInitiateAttachmentDownload : ( bm : Bm . ThunderbirdInitiateAttachmentDownload ) =>
253251 BrowserMsg . sendAwait ( undefined , 'thunderbirdInitiateAttachmentDownload' , bm , true ) as Promise < Bm . Res . ThunderbirdInitiateAttachmentDownload > ,
254252 thunderbirdGetCurrentUser : ( ) =>
0 commit comments