UNPKG

mailinator-client

Version:
10 lines (9 loc) 457 B
import { Request } from '../Request'; import { IRestResponse } from 'typed-rest-client/RestClient'; import { ResponseStatus } from '../ResponseStatus'; /** @deprecated This endpoint is deprecated and will be removed in a future release. */ export declare class CreateDomainRequest implements Request<ResponseStatus> { private readonly domainId; constructor(domainId: string); execute(apiToken: string): Promise<IRestResponse<ResponseStatus>>; }