6 lines
205 B
TypeScript
6 lines
205 B
TypeScript
import { APIResponseObject, SendEmailCodeParams } from "../../types";
|
|
/**
|
|
* # Send Email Code to a User
|
|
*/
|
|
export default function sendEmailCode(params: SendEmailCodeParams): Promise<APIResponseObject>;
|