UNPKG

ori-core-java

Version:

Simple Minecraft library for launching minecraft game written in Typescript.

22 lines (21 loc) 517 B
/** * @author Cosmic-fi * @license CC-BY-NC 4.0 - https://creativecommons.org/licenses/by-nc/4.0/ */ export default class Json { options: any; constructor(options: any); GetInfoVersion(): Promise<{ error: boolean; message: string; InfoVersion?: undefined; json?: undefined; version?: undefined; } | { InfoVersion: any; json: any; version: string; error?: undefined; message?: undefined; }>; }