Documentation
    Preparing search index...

    Interface ExpressLikeRequest

    Minimal interface representing Express-like Request.

    interface ExpressLikeRequest {
        auth?: { user?: RbacUserContext };
        headers?: Record<string, string | string[] | undefined>;
        ip?: string;
        method: string;
        path: string;
        rbac?: any;
        socket?: { remoteAddress?: string };
        url?: string;
        user?: RbacUserContext;
    }
    Index

    Properties

    auth?: { user?: RbacUserContext }
    headers?: Record<string, string | string[] | undefined>
    ip?: string
    method: string
    path: string
    rbac?: any
    socket?: { remoteAddress?: string }
    url?: string