Type alias CachedObject<T>

CachedObject<T>: Partial<T> & {
    id: Id<T>;
    pos: RoomPosition;
    room?: undefined;
} & Tag.OpaqueTag<"CachedObject">

A partially cached RoomObject with Id

Type Parameters

  • T extends CacheableObject

Type declaration

  • id: Id<T>
  • pos: RoomPosition
  • Optional room?: undefined

Generated using TypeDoc