mailinator-client
Version:
Mailinator REST API client for JavaScript applications.
9 lines (8 loc) • 408 B
TypeScript
import { Request } from '../Request';
import { IRestResponse } from 'typed-rest-client/RestClient';
import { InstantTOTP2FACode } from './InstantTOTP2FACode';
export declare class InstantTOTP2FACodeRequest implements Request<InstantTOTP2FACode> {
private readonly totpSecretKey;
constructor(totpSecretKey: string);
execute(apiToken: string): Promise<IRestResponse<InstantTOTP2FACode>>;
}