Documentation
    Preparing search index...

    Interface EnforceConfig

    Enforcement gate configuration.

    The ACL check function (wraps @kehto/acl or legacy aclStore)

    Maps pubkey to full identity (dTag, aggregateHash)

    Optional audit callback. Called on every enforce() check with the identity, capability, and decision.

    interface EnforceConfig {
        checkAcl: AclChecker;
        onAclCheck?: (event: AclCheckEvent) => void;
        resolveIdentity: IdentityResolver;
    }
    Index

    Properties

    checkAcl: AclChecker
    onAclCheck?: (event: AclCheckEvent) => void
    resolveIdentity: IdentityResolver