Interface IRoomActorList

interface IRoomActorList {
    actorsMap: Record<string, {
        actorClassType: string;
        actorList: any[];
    }>;
    roomId: string;
}

Properties

Properties

actorsMap: Record<string, {
    actorClassType: string;
    actorList: any[];
}>

Type declaration

  • actorClassType: string
  • actorList: any[]
roomId: string

Generated using TypeDoc