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
/
Future.ts
15 lines
(9 loc)
•
282 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace java
.util
.concurrent
{ export interface Future<V> {
cancel
(mayInterruptIfRunning: boolean): boolean;
isCancelled
(): boolean;
isDone
(): boolean;
get
(): V;
get
(timeout: long, unit: TimeUnit): V; } }