@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.
13 lines • 515 B
TypeScript
import { LevelBase } from "../LevelBase";
import { LevelType } from "../LevelType";
export declare class SubTitle implements LevelBase {
private readonly content;
private readonly fadeInTime?;
private readonly stayTime?;
private readonly fadeOutTime?;
constructor(content: string, fadeInTime?: number, stayTime?: number, fadeOutTime?: number);
render(playerIdentifier: string): Promise<void>;
getType(): LevelType;
getOccupiedTicks(): number;
}
//# sourceMappingURL=SubTitle.d.ts.map