emailengine-client
Version:
A TypeScript client for the EmailEngine API
15 lines (14 loc) • 404 B
TypeScript
import { Options } from "../../../../misc/Options";
/**
* Remove a message from the outbox
*/
export declare class RemoveMessageOutboxOptions extends Options {
/**
* Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
*/
'x-ee-timeout'?: number | undefined;
/**
* Queue identifier for scheduled email
*/
'queueId': string;
}