UNPKG
mailex
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.1
Easy Mail Sender
mailex
/
dist
/
index.d.ts
8 lines
(7 loc)
•
256 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{ mailobj }
from
'./model/mailobj'
;
export
declare
class
mailex
{
private
script;
constructor
(
script
:
string
);
sendMail
(
mailObj
: mailobj,
mailResponse
?:
(
res
:
any
) =>
void
):
void
;
sendMailAsync
(
mailObj
: mailobj):
Promise
<
unknown
>; }