Interface: OrSet<T>
Interface: OrSet<T>
Section titled “Interface: OrSet<T>”Defined in: core/src/schema/crdt.ts:170
Type Parameters
Section titled “Type Parameters”T = unknown
Properties
Section titled “Properties”
readonlyadds:Readonly<Record<string, readonlyOrTag[]>>
Defined in: core/src/schema/crdt.ts:172
Map: element value → set of tags that have added it.
tombstones
Section titled “tombstones”
readonlytombstones: readonlyOrTag[]
Defined in: core/src/schema/crdt.ts:174
Tags of any add that has been removed. Cross-referenced to adds.
values
Section titled “values”
readonlyvalues:Readonly<Record<string,T>>
Defined in: core/src/schema/crdt.ts:177
Optional value-registry so we don’t lose non-primitive shapes through the string key.