emailengine-client
Version:
A TypeScript client for the EmailEngine API
15 lines (14 loc) • 414 B
TypeScript
import { Options } from "../../../../misc/Options";
/**
* Returns stored information about the gateway. Passwords are not included.
*/
export declare class GetGatewayInfoOptions extends Options {
/**
* Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
*/
'x-ee-timeout'?: number | undefined;
/**
* Gateway ID
*/
'gateway': string;
}