ms/packages/bukkit/src/typings/org.bukkit.WeatherType.ts

11 lines
345 B
TypeScript

declare namespace org {
namespace bukkit {
class WeatherType {
public static DOWNFALL: org.bukkit.WeatherType;
public static CLEAR: org.bukkit.WeatherType;
public static values(): org.bukkit.WeatherType[];
public static valueOf(name: string): org.bukkit.WeatherType;
}
}
}