UNPKG
node-geogebra
Version:
latest (1.2.1)
1.2.1
1.2.0
1.0.1
1.0.0
Generate graphics with geogebra from nodejs
github.com/jmulet/node-geogebra
jmulet/node-geogebra
node-geogebra
/
dist
/
QueueTak.d.ts
11 lines
(10 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
GGBPlotter
}
from
"./GGBPlotter"
;
import
{
PriorityQueue
}
from
"./PriorityQueue"
;
export
declare
class
QueueTask
{
id
:
number
;
private
cue;
isSubscribed
:
boolean
;
watcher
:
any
;
constructor
(
id
:
number
,
cue
:
PriorityQueue
);
subscribe
():
Promise
<
GGBPlotter
>; }