Beignet API reference
    Preparing search index...

    Interface DevtoolsAuditLogOptions

    Options for wrapping an audit log with devtools emission.

    interface DevtoolsAuditLogOptions {
        audit: AuditLogPort;
        devtools?: DevtoolsPort;
        emit?: boolean;
        redact?: (entry: AuditLogEntry) => AuditLogEntry;
    }
    Index

    Properties

    Durable audit log to write first.

    devtools?: DevtoolsPort

    Optional devtools port that receives audit events.

    emit?: boolean

    Whether to emit devtools events. Defaults to true.

    redact?: (entry: AuditLogEntry) => AuditLogEntry

    Optional app-owned redactor applied after Beignet's audit redaction.