feat: add bukkit class type

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
2019-09-12 17:54:17 +08:00
parent cbe87cc378
commit 2bf239d8ea
959 changed files with 36124 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
declare namespace org {
namespace bukkit {
namespace block {
class DoubleChest {
constructor(chest: org.bukkit.inventory.DoubleChestInventory)
public getInventory(): org.bukkit.inventory.Inventory;
public getLeftSide(): org.bukkit.inventory.InventoryHolder;
public getRightSide(): org.bukkit.inventory.InventoryHolder;
public getLocation(): org.bukkit.Location;
public getWorld(): org.bukkit.World;
public getX(): number;
public getY(): number;
public getZ(): number;
}
}
}
}