import Class from "../../types/Class"; import ActorClient from "./ActorClient/ActorClient"; import ActorId from "../ActorId"; export default class ActorProxyImpl { actorClient: ActorClient; actorTypeClass: Class; actorId: ActorId; constructor(actorTypeClass: Class, actorId: ActorId, actorClient: ActorClient); }