@bobfrankston/mailx-types 0.1.26 → 0.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/mailx-api.d.ts +6 -0
- package/package.json +1 -1
package/mailx-api.d.ts
CHANGED
|
@@ -235,5 +235,11 @@ export interface MailxApi {
|
|
|
235
235
|
ok: boolean;
|
|
236
236
|
reason?: string;
|
|
237
237
|
}>;
|
|
238
|
+
/** Register rmfmail as the OS mailto: handler. Windows completes with a
|
|
239
|
+
* manual Default-apps step described in `message`. */
|
|
240
|
+
registerMailto?(): Promise<{
|
|
241
|
+
ok: boolean;
|
|
242
|
+
message: string;
|
|
243
|
+
}>;
|
|
238
244
|
}
|
|
239
245
|
//# sourceMappingURL=mailx-api.d.ts.map
|