Documentation
    Preparing search index...
    RouteHandlerInfo:
        | { type: "closure"; name: string; args?: string }
        | { type: "controller"; method: string; moduleNameOrPath: string }

    Information node describing different types of route handlers and their metadata

    Type Declaration

    • { type: "closure"; name: string; args?: string }
      • type: "closure"

        Type identifier for closure route handler

      • name: string

        Name of the closure handler

      • Optionalargs?: string

        Optional arguments for the closure

    • { type: "controller"; method: string; moduleNameOrPath: string }
      • type: "controller"

        Type identifier for controller route handler

      • method: string

        Method name on the controller class

      • moduleNameOrPath: string

        Module name or file path for the controller