gatex
    Preparing search index...

    Type Alias GatEXHandler

    GatEXHandler: (
        req: Request,
        res: Response,
        next: NextFunction,
    ) => void | Promise<void>

    Represents a standard request handler function for GatEX. It's an alias for the Express RequestHandler to provide cleaner documentation.

    Type declaration

      • (req: Request, res: Response, next: NextFunction): void | Promise<void>
      • Parameters

        • req: Request

          The Express request object.

        • res: Response

          The Express response object.

        • next: NextFunction

          The next middleware function in the stack.

        Returns void | Promise<void>