ms/packages/bukkit/src/typings/org.bukkit.event.entity.Ent...

33 lines
1.4 KiB
TypeScript

declare namespace org {
namespace bukkit {
namespace event {
namespace entity {
// @ts-ignore
class EntityTeleportEvent extends org.bukkit.event.entity.EntityEvent implements org.bukkit.event.Cancellable {
constructor(what: org.bukkit.entity.Entity, from: org.bukkit.Location, to: org.bukkit.Location)
public isCancelled(): boolean;
public setCancelled(cancel: boolean): void;
/**
* Gets the location that this entity moved from
*/
public getFrom(): org.bukkit.Location;
/**
* Sets the location that this entity moved from
*/
public setFrom(from: org.bukkit.Location): void;
/**
* Gets the location that this entity moved to
*/
public getTo(): org.bukkit.Location;
/**
* Sets the location that this entity moved to
*/
public setTo(to: org.bukkit.Location): void;
public getHandlers(): org.bukkit.event.HandlerList;
public static getHandlerList(): org.bukkit.event.HandlerList;
}
}
}
}
}