UNPKG
gmll
Version:
latest (4.2.1)
preview (4.0.9)
4.2.1
4.2.0
4.1.5
4.1.4
4.1.3
4.1.2
4.1.1
4.0.9
4.0.3
4.0.0
3.3.6
3.3.5
3.3.4
3.3.2
3.3.0
3.2.0
3.1.1
3.1.0
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.5.1
1.5.0
1.4.0
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
0.1.1
0.1.0
0.0.12
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
A generic launcher core for building custom launchers
www.hanro50.net.za/gmll
Hanro50/GMLL
gmll
/
types
/
modules
/
internal
/
worker.d.cts
8 lines
(7 loc)
•
255 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
/// <reference types="node" />
import
{
Worker
,
WorkerOptions
}
from
"worker_threads"
;
/** *
@param
options options to initalize a worker *
@returns
a fully created worker instance */
export
declare
function
makeWorker
(
options: WorkerOptions
):
Worker
;