UNPKG
typesforbukkit
Version:
latest (1.4.1)
1.4.1
1.4.0
1.3.0
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
Types For Bukkit
typesforbukkit
/
external
/
java
/
util
/
concurrent
/
Callable.ts
7 lines
(6 loc)
•
189 B
text/typescript
View Raw
1
2
3
4
5
6
7
namespace
java.util.concurrent
{ export
interface
Callable
<
V
> {
/** @deprecated Computes a result, or throws an exception if unable to do so */
call(): V; } }