UNPKG
@tayar/email
Version:
latest (0.0.14-next)
next (0.1.6-next)
0.1.6-next
0.1.5-next
0.1.4-next
0.1.3-next
0.1.2-next
0.1.1-next
0.1.0-next
0.0.41-next
0.0.39-next
0.0.38-next
0.0.37-next
0.0.36-next
0.0.35-next
0.0.34-next
0.0.33-next
0.0.32-next
0.0.31-next
0.0.29-next
0.0.28-next
0.0.27-next
0.0.26
0.0.26-next
0.0.25-next
0.0.24-next
0.0.23-next
0.0.22-next
0.0.21-next
0.0.20-next
0.0.19-next
0.0.18-next
0.0.17-next
0.0.16-next
0.0.15-next
0.0.14-next
A simple email package for Tayar architecture
github.com/sikka-software/tayar
sikka-software/tayar
@tayar/email
/
dist
/
index.d.ts
10 lines
(7 loc)
•
218 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
interface
EmailParams
{
to
:
string
;
subject
:
string
;
resetURL
:
string
; }
declare
function
sendResetPasswordEmail
(
{ to, subject, resetURL }:
EmailParams
):
Promise
<
void
>;
export
{ sendResetPasswordEmail };