export type TombstoneType = '$tombstone$'; export type RetractType = '$retract$'; export type EntityType = '$entity$'; export type RefType = TombstoneType | RetractType | EntityType; export interface ThingRef { __ref: [T, string]; } export type TombstoneRef = ThingRef; export type RetractRef = ThingRef; export type EntityRef = ThingRef; export interface EntityInterface { id: string; } export interface AnyThing extends EntityInterface { __type: string; } //# sourceMappingURL=entity.d.ts.map