UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

19 lines (18 loc) 443 B
import { Options } from "../../../../misc/Options"; /** * Delete existing mailbox folder */ export declare class DeleteMailboxOptions extends Options { /** * Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds) */ 'x-ee-timeout'?: number | undefined; /** * Account ID */ 'account': string; /** * Mailbox folder path to delete */ 'path': string; }