UNPKG

@accounts/server

Version:

Fullstack authentication and accounts-management

12 lines (10 loc) 279 B
import { type User } from '@accounts/types'; import { type EmailTemplateType } from './email-template-type'; export type PrepareMailFunction = ( to: string, token: string, user: User, pathFragment: string, emailTemplate: EmailTemplateType, from: string ) => object;