persona-community-5/.pnpm-store/v3/files/59/ee64491008698bfd2cbc12da4598303402efe369f2bc6aa87dce9570a9eafe8bbc30294dfeac9b3c13ba93eb1b0265cab6328e604f3d16452197a7c45bd324-exec
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

13 lines
359 B
Plaintext
Executable File

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;