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

    Interface GateIdentity

    The resolved caller identity a gate decision needs (compute from your Hono Context: isAdmin flag + principal id).

    interface GateIdentity {
        isAdmin: boolean;
        principal: string | null;
    }
    Index

    Properties

    Properties

    isAdmin: boolean
    principal: string | null