2017-12-13 19:55:08 +00:00
|
|
|
import { MapInfoReply } from '../../events/MapInfoReply';
|
|
|
|
|
import { UUID } from '../UUID';
|
|
|
|
|
import { CommandsBase } from './CommandsBase';
|
2017-12-16 06:42:41 +00:00
|
|
|
import { RegionInfoReply } from '../../events/RegionInfoReply';
|
2017-12-13 19:55:08 +00:00
|
|
|
export declare class GridCommands extends CommandsBase {
|
2017-12-16 06:42:41 +00:00
|
|
|
getRegionByName(regionName: string): Promise<RegionInfoReply>;
|
2017-12-13 19:55:08 +00:00
|
|
|
getRegionMapInfo(gridX: number, gridY: number): Promise<MapInfoReply>;
|
2017-12-14 18:22:41 +00:00
|
|
|
name2Key(name: string): Promise<UUID>;
|
2017-12-13 19:55:08 +00:00
|
|
|
}
|