Middleware
Middleware
Represents a middleware with its metadata and scope.
Signature
interface Middleware {
    id: string;
    name: string;
    path: string;
    relativePath: string;
    parentPath: string;
    global: boolean;
    command: string | null;
}