asajs
Version:
Make your Minecraft JsonUI with ScriptingAPI
96 lines (95 loc) • 2.8 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
var Class_exports = {};
__export(Class_exports, {
Class: () => Class
});
module.exports = __toCommonJS(Class_exports);
class Class {
/**
* A static method that seems to serve as a placeholder, but has no functionality as of now.
*
* @private
* @static
*/
static apply() {
}
/**
* A static method that seems to serve as a placeholder, but has no functionality as of now.
*
* @private
* @static
*/
static bind() {
}
/**
* A static method that seems to serve as a placeholder, but has no functionality as of now.
*
* @private
* @static
*/
static call() {
}
/**
* A static method that seems to serve as a placeholder, but has no functionality as of now.
*
* @private
* @static
*/
static toString() {
}
}
/**
* A static property initialized to an empty string, likely intended to hold arguments or be overridden in the future.
*
* @private
* @static
* @type {string}
*/
__publicField(Class, "arguments", "");
/**
* A static property initialized to an empty string, likely intended to hold caller information or be overridden in the future.
*
* @private
* @static
* @type {string}
*/
__publicField(Class, "caller", "");
/**
* A static property initialized to an empty string, likely intended to hold length-related data or be overridden in the future.
*
* @private
* @static
* @type {string}
*/
__publicField(Class, "length", "");
/**
* A static property initialized to an empty string, likely intended to hold a name or be overridden in the future.
*
* @private
* @static
* @type {string}
*/
__publicField(Class, "name", "");
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
Class
});