UNPKG

neverbounce

Version:

An API wrapper for the NeverBounce API

18 lines (17 loc) 359 B
import HttpsClient from './HttpsClient.js'; /** * Account API endpoints */ class Account extends HttpsClient { /** * Returns account info * @returns Promise with account information */ async info() { return this.request({ method: 'GET', path: 'account/info' }); } } export default Account;