UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

17 lines (16 loc) 411 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SendGridCredentials = void 0; /** * SendGrid認証情報 */ class SendGridCredentials { constructor(options) { const { apiKey, alert } = options; this.apiKey = apiKey; if (alert !== undefined) { this.alert = alert; } } } exports.SendGridCredentials = SendGridCredentials;