Files
ms/packages/sponge/src/typings/org.spongepowered.api.block.tileentity.carrier.ShulkerBox.ts
2019-09-25 09:55:00 +08:00

28 lines
1.1 KiB
TypeScript

declare namespace org {
namespace spongepowered {
namespace api {
namespace block {
namespace tileentity {
namespace carrier {
// @ts-ignore
interface ShulkerBox extends org.spongepowered.api.block.tileentity.carrier.TileEntityCarrier {
/**
* Gets a copy of the {@link DyeableData} representing the color of this
* {@link ShulkerBox}.
*/
// @ts-ignore
getDyeData(): org.spongepowered.api.data.manipulator.mutable.DyeableData;
/**
* Gets the current {@link Value} of {@link DyeColor} for this
* {@link ShulkerBox}.
*/
// @ts-ignore
color(): org.spongepowered.api.data.value.mutable.Value;
}
}
}
}
}
}
}