Saxonberg Server API
    Preparing search index...

    PropertyChangedEvent — PropertiedMixin property-bag write.

    Fired by PropertiedMixin.setProp after a successful, value-changing write. The property discriminator (distinct from FieldChangedEvent's field) keeps the property-bag namespace and the fact-mixin field namespace separated on the meta-bus index — a fact-mixin field named 'name' and a property-bag key named 'name' do not cross-trigger.

    No setter helper is exported here. setProp already centralizes the change site, so a helper would not pay for itself.

    Concrete event classes don't extend a common base — they satisfy the BusEvent<P> structural contract (in api/event.ts) by declaring kind: string + payload: P directly.

    interface PropertyChangedPayload {
        newValue: unknown;
        oldValue: unknown;
        property: string;
        target: string;
    }
    Index

    Properties

    newValue: unknown
    oldValue: unknown
    property: string
    target: string