import GRPCClient from './GRPCClient'; import IClientActorBuilder from "../../../interfaces/Client/IClientActorBuilder"; import Class from "../../../types/Class"; export default class GRPCClientActor implements IClientActorBuilder { client: GRPCClient; constructor(client: GRPCClient); create(actorTypeClass: Class): T; }