initial status
This commit is contained in:
12
node_modules/uri-js/dist/esnext/schemes/mailto.d.ts
generated
vendored
Normal file
12
node_modules/uri-js/dist/esnext/schemes/mailto.d.ts
generated
vendored
Normal file
@ -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;
|
Reference in New Issue
Block a user