Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 2x 2x 2x 5x | import { Provider } from '@nestjs/common';
import { SendGridModuleOptions } from '../interfaces/sendgrid-options.interface';
import { SENDGRID_TOKEN } from '../common/sendgrid.constants';
import { createSendGridClient } from '../common/sendgrid.util';
export function createSendGridProviders(
options: SendGridModuleOptions,
): Provider {
return {
provide: SENDGRID_TOKEN,
useValue: createSendGridClient(options),
};
}
|