neverbounce
Version:
An API wrapper for the NeverBounce API
14 lines (13 loc) • 332 B
TypeScript
import HttpsClient from './HttpsClient.js';
import { AccountInfoResponse } from './types.js';
/**
* Account API endpoints
*/
declare class Account extends HttpsClient {
/**
* Returns account info
* @returns Promise with account information
*/
info(): Promise<AccountInfoResponse>;
}
export default Account;