9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
|
declare function _exports({ to, subject, text, html, alias, }: {
|
||
|
to?: string;
|
||
|
subject?: string;
|
||
|
text?: string;
|
||
|
html?: string;
|
||
|
alias?: string | null;
|
||
|
}): Promise<any>;
|
||
|
export = _exports;
|