@throw-out-error/minecraft-datapack
Version:
A module for making minecraft datapacks with node to cut down on the repetition.
14 lines (13 loc) • 346 B
TypeScript
export declare class Condition {
options: object;
/**
* @param {object} options the configuration of the loot condition
*/
constructor(options: object);
compile(): object;
/**
* Creates a copy of the loot condition
* @param {Condition} Condition
*/
static copy(condition: Condition): Condition;
}