feat: add sponge typings

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
2019-09-25 09:55:00 +08:00
parent 35f2dbf162
commit a96756e1ac
1928 changed files with 76288 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
declare namespace org {
namespace spongepowered {
namespace api {
namespace block {
namespace tileentity {
// @ts-ignore
interface EndGateway extends org.spongepowered.api.block.tileentity.TileEntity {
/**
* Gets a copy of the {@link EndGatewayData} containing all available
* data this {@link EndGateway} has.
*/
// @ts-ignore
getEndGatewayData(): org.spongepowered.api.data.manipulator.mutable.tileentity.EndGatewayData;
}
}
}
}
}
}