wiremock-mapper
Version:
DSL for setting up WireMock mappings.
11 lines (10 loc) • 560 B
TypeScript
import { WireMockMapping } from './wiremock_mapping';
import { GetRequestOptions } from './wiremock_service';
import { RequestsResponse } from './requests_response';
export declare class WireMockMapper {
static clearAllMappings(): Promise<void>;
static createMapping(wireMockMapping: WireMockMapping): Promise<string>;
static deleteMapping(stubId: string): Promise<void>;
static getRequests(getRequestOptions?: GetRequestOptions): Promise<RequestsResponse>;
static deleteRequests(deleteRequestOptions?: GetRequestOptions): Promise<void>;
}