UNPKG

nestjs-resend

Version:

NestJS provider for sending emails with resend

10 lines (9 loc) 299 B
import { ModuleMetadata } from '@nestjs/common'; export interface ResendOptions { apiKey: string; } export interface ResendOptionsAsync extends Pick<ModuleMetadata, 'imports'> { name?: string; useFactory: (...args: any[]) => ResendOptions | Promise<ResendOptions>; inject?: any[]; }