ms/packages/bukkit/src/typings/org.bukkit.event.block.Bloc...

19 lines
740 B
TypeScript

declare namespace org {
namespace bukkit {
namespace event {
namespace block {
// @ts-ignore
class BlockSpreadEvent extends org.bukkit.event.block.BlockFormEvent {
constructor(block: org.bukkit.block.Block, source: org.bukkit.block.Block, newState: org.bukkit.block.BlockState)
/**
* Gets the source block involved in this event.
*/
public getSource(): org.bukkit.block.Block;
public getHandlers(): org.bukkit.event.HandlerList;
public static getHandlerList(): org.bukkit.event.HandlerList;
}
}
}
}
}