2017-12-13 19:55:08 +00:00
|
|
|
/// <reference types="long" />
|
|
|
|
|
import { MapInfoReply } from '../../events/MapInfoReply';
|
|
|
|
|
import * as Long from 'long';
|
|
|
|
|
import { UUID } from '../UUID';
|
|
|
|
|
import { CommandsBase } from './CommandsBase';
|
|
|
|
|
export declare class GridCommands extends CommandsBase {
|
|
|
|
|
getRegionHandle(regionID: UUID): Promise<Long>;
|
|
|
|
|
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
|
|
|
}
|