UNPKG
@jjavery/worker-pool
Version:
latest (0.8.0)
0.8.0
0.7.0
0.6.0
0.5.0
0.4.0
0.3.0
A worker pool for Node.js applications
github.com/jjavery/worker-pool
jjavery/worker-pool
@jjavery/worker-pool
/
dist
/
test-worker.d.ts
7 lines
(6 loc)
•
265 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
function
test
(
test
:
any
):
any
;
export
function
asyncTest
(
test
:
any
,
ms
:
any
):
Promise
<
any
>;
export
function
exit
(
):
void
;
export
function
asyncExit
(
ms
:
any
):
Promise
<
void
>;
export
function
throws
(
):
void
;
export
function
asyncThrows
(
ms
:
any
):
Promise
<
void
>;