interface InternalSubscriptionMessage<T> {
    condition: null | PredicatesGroup<T>;
    element: T;
    model: PersistentModelConstructor<T>;
    opType: OpType;
    savedElement?: T;
}

Type Parameters

Properties

condition: null | PredicatesGroup<T>
element: T
opType: OpType
savedElement?: T