@jsprismarine/prismarine
Version:
Dedicated Minecraft Bedrock Edition server written in TypeScript
17 lines • 573 B
TypeScript
import { Command } from '../../command/Command';
import { Event } from '../Event';
export default class CommandRegisterEvent extends Event {
private readonly Command;
/**
* Construct the event.
* @param {Command} command - command The command that was registered.
* @returns {CommandRegisterEvent} The event.
*/
constructor(command: Command);
/**
* Get the command that was registered.
* @returns {Command} The command that was registered.
*/
getCommand(): Command;
}
//# sourceMappingURL=CommandRegisterEvent.d.ts.map