@suluk/hono - v0.1.5
    Preparing search index...

    Interface GateDecision

    A gate decision: may the op run, scope the query to the owner, and — when denied — the honest status.

    interface GateDecision {
        ok: boolean;
        scopeOwner: boolean;
        status?: 401 | 403;
    }
    Index

    Properties

    Properties

    ok: boolean
    scopeOwner: boolean
    status?: 401 | 403