18 lines
558 B
TypeScript
18 lines
558 B
TypeScript
declare namespace org {
|
|
namespace bukkit {
|
|
namespace event {
|
|
namespace block {
|
|
// @ts-ignore
|
|
abstract class BlockEvent extends org.bukkit.event.Event {
|
|
constructor(theBlock: org.bukkit.block.Block)
|
|
protected block: org.bukkit.block.Block;
|
|
/**
|
|
* Gets the block involved in this event.
|
|
*/
|
|
public getBlock(): org.bukkit.block.Block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|