mbus-backend
    Preparing search index...

    Interface ExpressRequest

    the parts of an express request that are relevant for mocking during tests

    interface ExpressRequest {
        body: any;
        params: ParamsDictionary;
        query: ParsedQs;
    }
    Index
    body: any
    params: ParamsDictionary
    query: ParsedQs