Files
ms/packages/bukkit/src/typings/org.bukkit.UndefinedNullability.ts
2019-09-24 15:02:03 +08:00

13 lines
300 B
TypeScript

declare namespace org {
namespace bukkit {
// @ts-ignore
interface UndefinedNullability {
/**
* Human readable description of the circumstances, in which the type is
* nullable.
*/
value(): string;
}
}
}