UNPKG

mineflayer-utils

Version:

A collection of small utility classes, functions, and events which work nicely with Mineflayer.

9 lines (8 loc) 244 B
import { Bot } from "mineflayer"; export declare class TemporarySubscriber { readonly bot: Bot; private readonly subscriptions; constructor(bot: Bot); subscribeTo(event: string, callback: Function): void; cleanup(): void; }