emailengine-client
Version:
A TypeScript client for the EmailEngine API
20 lines (19 loc) • 482 B
TypeScript
import { Options } from "../../../../misc/Options";
/**
* Set up a license for EmailEngine to unlock all features
*/
export declare class RegisterLicenseOptions extends Options {
/**
* Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
*/
'x-ee-timeout'?: number | undefined;
/**
* Register License Details
*/
'body': {
/**
* License file
*/
license: string;
};
}