wiremock-captain
Version:
A better way to use the WireMock simulator to test your HTTP APIs
12 lines (11 loc) • 367 B
TypeScript
import { KeyValue, Method } from './internalTypes';
export interface IWireMockRequest {
body?: unknown;
cookies?: Record<string, KeyValue>;
endpoint: string;
headers?: Record<string, KeyValue>;
method: Method;
queryParameters?: Record<string, KeyValue>;
formParameters?: Record<string, KeyValue>;
metadata?: Record<string, unknown>;
}