Table of contents

Public interface

A diff describing the changes to a record.

Signature
interface RecordsDiff<R extends UnknownRecord> {}
References

UnknownRecord

Source

packages/store/src/lib/RecordsDiff.ts


Properties

added

Public propertysignature

Signature
added: Record<IdOf<R>, R>
References

IdOf


removed

Public propertysignature

Signature
removed: Record<IdOf<R>, R>
References

IdOf


updated

Public propertysignature

Signature
updated: Record<IdOf<R>, [from: R, to: R]>
References

IdOf


RecordIdRecordType