UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

16 lines (15 loc) 523 B
import { Options } from "../../../../misc/Options"; export declare class RemoveBlocklistAddressOptions extends Options { /** * Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds) */ 'x-ee-timeout'?: number | undefined; /** * List ID. Must use a subdomain name format. Lists are registered ad-hoc, so a new identifier defines a new list. */ 'listId': string; /** * Email address to remove from the list */ 'recipient': string; }