UNPKG
@nest-modules/mailer
Version:
latest (1.3.22)
1.3.22
1.3.9
1.1.3
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.4.1
0.4.0
0.3.0
0.2.1
0.1.3
NestJS - a mailer module (@mailer)
github.com/nest-modules/mailer
nest-modules/mailer
@nest-modules/mailer
/
dist
/
interfaces
/
template-adapter.interface.d.ts
5 lines
(4 loc)
•
200 B
TypeScript
View Raw
1
2
3
4
5
import
{
MailerOptions
}
from
'./mailer-options.interface'
;
export
interface
TemplateAdapter
{
compile
(
mail
:
any
,
callback
:
(
err
?:
any
,
body
?:
string
) =>
any
,
options
:
MailerOptions
):
void
; }