gatex
    Preparing search index...

    Type Alias GroupArgs

    GroupArgs:
        | [path: string, middleware: RequestHandler, fn: GroupCallback]
        | [middleware: RequestHandler, fn: GroupCallback]
        | [path: string, fn: GroupCallback]
        | [fn: GroupCallback]

    Represents the flexible argument list for the group method, allowing for multiple overloads including path, middleware, and the group callback function.