Type alias GatewayHelperServiceBaseFnOptions

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

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

Type declaration

  • endpoint: GatewayControllerEndpointInfo

    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 recived by the application.

  • res: Response

    The response object created by the application.

Generated using TypeDoc