zync-nest-library
Version:
NestJS library with database backup and file upload utilities
25 lines (22 loc) • 372 B
text/typescript
export interface IMailerConfig {
logo: string;
host: string;
user: string;
pass: string;
from: string;
port: string;
playStore: string;
appStore: string;
}
export interface IMail {
to: string;
subject: string;
template?: string;
context?: {
[x: string]: string;
};
}
export enum MailOrderType {
CUSTOMER = "customer",
ADMIN = "admin"
}