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