UNPKG

yoni-mcscripts-lib

Version:

为 Minecraft Script API 中的部分接口创建了 wrapper,并提供简单的事件管理器和任务管理器,另附有一些便于代码编写的一些小工具。

18 lines (17 loc) 474 B
export class UUID { static NIL_UUID_STR: string; static NIL_UUID: null; static UUID_CHARS: string[]; static randomUUID(): UUID; static fromInt(int: any): void; static fromUUID(u: any): UUID; static clone(u: any): UUID; constructor(targetUUID: any, allowNil?: boolean); get uuidSequene(): any[]; toJSON(): string; clone(): UUID; equals(uuid: any): boolean; toString(): string; toLocaleString(): string; #private; }