mailinator-client
Version:
Mailinator REST API client for JavaScript applications.
9 lines (8 loc) • 426 B
TypeScript
import { Request } from '../Request';
import { IRestResponse } from 'typed-rest-client/RestClient';
import { Authenticators } from './Authenticators';
/** @deprecated This endpoint is not in the OpenAPI spec and will be removed in a future release. */
export declare class GetAuthenticatorRequest implements Request<Authenticators> {
constructor();
execute(apiToken: string): Promise<IRestResponse<Authenticators>>;
}