nestjs-resend
Version:
NestJS provider for sending emails with resend
12 lines (11 loc) • 418 B
TypeScript
import { ResendOptions, ResendOptionsAsync } from './resend.interface';
export declare class ResendModule {
static forRoot(options: ResendOptions): {
module: typeof ResendModule;
imports: import("@nestjs/common").DynamicModule[];
};
static forRootAsync(options: ResendOptionsAsync): {
module: typeof ResendModule;
imports: import("@nestjs/common").DynamicModule[];
};
}