Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/uri-js/dist/esnext/schemes/mailto.d.ts')
-rw-r--r--node_modules/uri-js/dist/esnext/schemes/mailto.d.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts b/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts
new file mode 100644
index 000000000..b0db4bfc1
--- /dev/null
+++ b/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts
@@ -0,0 +1,12 @@
+import { URISchemeHandler, URIComponents } from "../uri";
+export interface MailtoHeaders {
+ [hfname: string]: string;
+}
+export interface MailtoComponents extends URIComponents {
+ to: Array<string>;
+ headers?: MailtoHeaders;
+ subject?: string;
+ body?: string;
+}
+declare const handler: URISchemeHandler<MailtoComponents>;
+export default handler;