mirror of
https://gitea.com/actions/stale.git
synced 2026-07-21 13:02:19 +00:00
0649bd8119
* Bumping actions/github to 2.2.0 for GHES * Husky commit correct node modules
13 lines
371 B
TypeScript
13 lines
371 B
TypeScript
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;
|