import { BaseEntity } from 'typeorm'; import * as mailer from 'nodemailer'; export default class Invite extends BaseEntity { id: number; name: string; login: string; email: string; token: string; constructor(); mail(message: any): Promise; }