10 lines
395 B
TypeScript
10 lines
395 B
TypeScript
import { MailerService } from '@nestjs-modules/mailer';
|
|
import { AuthService } from '../auth/auth.service.js';
|
|
import { MailInfo } from '../models/server.model.js';
|
|
export declare class MailService {
|
|
private mailerService;
|
|
private authService;
|
|
constructor(mailerService: MailerService, authService: AuthService);
|
|
sendInquiry(userId: string, mailInfo: MailInfo): Promise<void>;
|
|
}
|