5 lines
144 B
TypeScript
5 lines
144 B
TypeScript
export function sendEmailVerificationCode(input: { email: string; scene: string }): never {
|
|
void input
|
|
throw new Error("Not implemented")
|
|
}
|