datasquirel/package-shared/functions/api/users/api-send-email-code.d.ts
Benjamin Toby 8a8257d17e Updates
2024-12-06 12:55:03 +01:00

17 lines
466 B
TypeScript

declare function _exports({ email, database, email_login_field, mail_domain, mail_port, sender, mail_username, mail_password, html, useLocal, }: {
email: string;
database: string;
email_login_field?: string;
mail_domain?: string;
mail_port?: number;
sender?: string;
mail_username?: string;
mail_password?: string;
html: string;
useLocal?: boolean;
}): Promise<{
success: boolean;
msg?: string;
}>;
export = _exports;