UNPKG
@ntegral/nestjs-sendgrid-client
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Provides an injectable SendGrid Client for the SendGrid v3 Web API
@ntegral/nestjs-sendgrid-client
/
lib
/
common
/
sendgridclient.decorator.ts
7 lines
(5 loc)
•
191 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
{
Inject
}
from
'@nestjs/common'
;
import
{
SENDGRIDCLIENT_TOKEN
}
from
'./sendgridclient.constants'
;
export
function
InjectSendGridClient
(
) {
return
Inject
(
SENDGRIDCLIENT_TOKEN
); }