UNPKG

mailinator-client

Version:
9 lines (8 loc) 408 B
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>>; }