feat: update type defiend

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
2019-09-24 15:02:03 +08:00
parent 781524f83e
commit a616a07553
958 changed files with 4088 additions and 3132 deletions

View File

@ -1,11 +1,12 @@
declare namespace org {
namespace bukkit {
namespace advancement {
class Advancement {
// @ts-ignore
interface Advancement extends org.bukkit.Keyed {
/**
* Get all the criteria present in this advancement.
*/
public getCriteria(): any[] /*java.util.Collection*/;
getCriteria(): any[] /*java.util.Collection*/;
}
}
}