UNPKG

wiremock-mapper

Version:
11 lines (10 loc) 560 B
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>; }