UNPKG

mineflayer-pvp

Version:

Adds support for basic PVP and PVE to Mineflayer bots.

11 lines (10 loc) 247 B
import { Bot } from "mineflayer"; import { PVP } from "./PVP"; export declare function plugin(bot: Bot): void; declare module "mineflayer" { interface Bot { pvp: PVP; } } export * from './Cooldown'; export * from './TimingSolver';