Files
node-metaverse/dist/classes/commands/RegionCommands.d.ts
2017-12-16 06:42:41 +00:00

8 lines
260 B
TypeScript

/// <reference types="long" />
import { CommandsBase } from './CommandsBase';
import { UUID } from '../UUID';
import * as Long from 'long';
export declare class RegionCommands extends CommandsBase {
getRegionHandle(regionID: UUID): Promise<Long>;
}