UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

18 lines (17 loc) 271 B
/** * Authentication info */ export declare class Authentication { /** * Account username */ 'user': string; /** * Access token for OAuth2 */ 'accessToken'?: string; /** * Account password */ 'password'?: string; }