Skip to content

Commit

Permalink
alphabet
Browse files Browse the repository at this point in the history
  • Loading branch information
eshanholtz committed Mar 12, 2020
1 parent 2cf04b7 commit f47f1ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions packages/helpers/classes/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import EmailAddress from "@sendgrid/helpers/classes/email-address";
import Mail from "@sendgrid/helpers/classes/mail"
import Personalization from "@sendgrid/helpers/classes/personalization";
import Request from "@sendgrid/helpers/classes/request";
import ResponseError from "@sendgrid/helpers/classes/response-error";
import Response from "@sendgrid/helpers/classes/response";
import ResponseError from "@sendgrid/helpers/classes/response-error";

export {
Attachment,
EmailAddress,
Mail,
Personalization,
Request,
ResponseError,
Response
Response,
ResponseError
}
4 changes: 2 additions & 2 deletions packages/helpers/classes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const EmailAddress = require('./email-address');
const Mail = require('./mail');
const Personalization = require('./personalization');
const Request = require('./request');
const ResponseError = require('./response-error');
const Response = require('./response');
const ResponseError = require('./response-error');
const Statistics = require('./statistics');

/**
Expand All @@ -21,7 +21,7 @@ module.exports = {
Mail,
Personalization,
Request,
ResponseError,
Response,
ResponseError,
Statistics,
};

0 comments on commit f47f1ef

Please sign in to comment.