datasquirel/package-shared/functions/backend/handleNodemailer.d.ts

9 lines
206 B
TypeScript
Raw Normal View History

2024-12-06 10:44:26 +00:00
declare function _exports({ to, subject, text, html, alias, }: {
to?: string;
subject?: string;
text?: string;
html?: string;
alias?: string | null;
}): Promise<any>;
export = _exports;