UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

15 lines (14 loc) 398 B
import { Options } from "../../../../misc/Options"; /** * Options for removing an account. */ export declare class RemoveAccountOptions extends Options { /** * Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds) */ 'x-ee-timeout'?: number | undefined; /** * The ID of the account to be removed. */ 'account': string; }