UNPKG

@cocalc/server

Version:

CoCalc server functionality: functions used by either the hub and the next.js server

5 lines (4 loc) 196 B
import type { Message } from "./message"; declare type BackendType = "email" | "password_reset"; export default function sendEmail(message: Message, type?: BackendType): Promise<void>; export {};