UNPKG

@accounts/server

Version:

Fullstack authentication and accounts-management

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