mailersend
Version:
Node.js helper module for MailerSend API
23 lines (22 loc) • 520 B
TypeScript
import { Pagination } from "../Pagination";
export interface TemplateQueryParams extends Pagination {
domain_id?: string;
}
export interface TemplateParams {
name?: string;
categories?: string[];
domain_id?: string;
tags?: string[];
text: string;
html: string;
auto_generate?: boolean;
}
export interface TemplateUpdateParams {
name?: string;
categories?: string[];
domain_id?: string;
tags?: string[];
text?: string;
html?: string;
auto_generate?: boolean;
}