node_test
    Preparing search index...

    Interface RouteDefinition

    RouteDefinition

    An interface for defining a route.

    interface RouteDefinition {
        action: string;
        contentType?: string;
        controller?: Controller;
        method: "get" | "post" | "put" | "patch" | "delete";
        path: string;
    }
    Index

    Properties

    action: string
    contentType?: string
    controller?: Controller
    method: "get" | "post" | "put" | "patch" | "delete"
    path: string