datasquirel/package-shared/functions/backend/handleNodemailer.d.ts
Benjamin Toby c49513c189 Updates
2024-12-06 11:44:26 +01:00

9 lines
206 B
TypeScript

declare function _exports({ to, subject, text, html, alias, }: {
to?: string;
subject?: string;
text?: string;
html?: string;
alias?: string | null;
}): Promise<any>;
export = _exports;