Ping / circuit latency, break out commands, add typing function for IM, add thinkingTime and charactersPerSecond parameters to typing functions
This commit is contained in:
22
dist/classes/ClientCommands.d.ts
vendored
Normal file
22
dist/classes/ClientCommands.d.ts
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
import { Region } from './Region';
|
||||
import { Agent } from './Agent';
|
||||
import { Bot } from '../Bot';
|
||||
import { NetworkCommands } from './commands/NetworkCommands';
|
||||
import { AssetCommands } from './commands/AssetCommands';
|
||||
import { TeleportCommands } from './commands/TeleportCommands';
|
||||
import { RegionCommands } from './commands/RegionCommands';
|
||||
import { GridCommands } from './commands/GridCommands';
|
||||
import { CommunicationsCommands } from './commands/CommunicationsCommands';
|
||||
import { AgentCommands } from './commands/AgentCommands';
|
||||
import { GroupCommands } from './commands/GroupCommands';
|
||||
export declare class ClientCommands {
|
||||
network: NetworkCommands;
|
||||
asset: AssetCommands;
|
||||
teleport: TeleportCommands;
|
||||
region: RegionCommands;
|
||||
grid: GridCommands;
|
||||
comms: CommunicationsCommands;
|
||||
agent: AgentCommands;
|
||||
group: GroupCommands;
|
||||
constructor(region: Region, agent: Agent, bot: Bot);
|
||||
}
|
||||
Reference in New Issue
Block a user