jimpex
    Preparing search index...

    Type Alias GatewayHelperServiceBaseFnOptions

    These are the base options sent to all the helper service functions.

    type GatewayHelperServiceBaseFnOptions = {
        endpoint: GatewayControllerEndpointInfo;
        next: NextFunction;
        req: Request;
        res: Response;
    }
    Index

    Properties

    Properties

    The information of the endpoint the gateway is calling.

    next: NextFunction

    The function to call the next middleware in the chain.

    req: Request

    The request received by the application.

    res: Response

    The response object created by the application.