emailengine-client
Version:
A TypeScript client for the EmailEngine API
19 lines (18 loc) • 494 B
TypeScript
import { Options } from "../../../../misc/Options";
/**
* Delete all stored templates for an account
*/
export declare class FlushTemplatesOptions extends Options {
/**
* Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
*/
'x-ee-timeout'?: number | undefined;
/**
* Account ID
*/
'account': string | undefined;
/**
* Must be true in order to flush templates
*/
'force'?: boolean | undefined;
}