UNPKG

@thisisagile/easy-test

Version:

Straightforward library for testing microservices built with @thisisagile/easy

12 lines (11 loc) 278 B
import { Id, Json, JsonValue, Text } from './Types'; export declare class Req { readonly state: any; constructor(state?: any); get id(): Id; get q(): JsonValue; get path(): Json; get query(): Json; get body(): unknown; get: (key: Text) => any; }