Documentation
    Preparing search index...

    Interface AclState

    Complete ACL state — immutable data structure.

    All mutations return a new AclState; the original is never modified.

    'permissive' grants all caps to unknown identities; 'restrictive' denies all caps to unknown identities

    Map from composite key ('dTag:hash') to AclEntry

    interface AclState {
        defaultPolicy: "permissive" | "restrictive";
        entries: Readonly<Record<string, AclEntry>>;
    }
    Index

    Properties

    defaultPolicy: "permissive" | "restrictive"
    entries: Readonly<Record<string, AclEntry>>