Inventory skeleton refactor

This commit is contained in:
Casper Warden
2017-12-19 23:43:00 +00:00
parent 4743dbfeec
commit 7987f5b379
27 changed files with 304 additions and 90 deletions

View File

@@ -9,6 +9,7 @@ import { GridCommands } from './commands/GridCommands';
import { CommunicationsCommands } from './commands/CommunicationsCommands';
import { AgentCommands } from './commands/AgentCommands';
import { GroupCommands } from './commands/GroupCommands';
import { InventoryCommands } from './commands/InventoryCommands';
export declare class ClientCommands {
network: NetworkCommands;
asset: AssetCommands;
@@ -18,5 +19,6 @@ export declare class ClientCommands {
comms: CommunicationsCommands;
agent: AgentCommands;
group: GroupCommands;
inventory: InventoryCommands;
constructor(region: Region, agent: Agent, bot: Bot);
}