@levimc-lse/interface-api
Version:
API for the logic tree development framework that supports cross-plugin UI queues at runtime in Minecraft Legacy Script Engine.
11 lines • 522 B
TypeScript
import EventEmitter from "node:events";
import { LevelType } from "../level";
export declare class UiMailBox extends EventEmitter {
private static instance;
static getInstance(): UiMailBox;
private readonly client;
private constructor();
pend(levelType: LevelType, targetPlayerIdentifier: string, triggerId: string, occupiedTicks: number): void;
fulfill(levelType: LevelType, targetPlayerIdentifier: string, triggerId: string, occupiedTicks: number): void;
}
//# sourceMappingURL=UiMailBox.d.ts.map