neverbounce
Version:
An API wrapper for the NeverBounce API
23 lines (22 loc) • 618 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const HttpsClient_js_1 = __importDefault(require("./HttpsClient.js"));
/**
* Account API endpoints
*/
class Account extends HttpsClient_js_1.default {
/**
* Returns account info
* @returns Promise with account information
*/
async info() {
return this.request({
method: 'GET',
path: 'account/info'
});
}
}
exports.default = Account;