UNPKG
@dr-coton/celery-node
Version:
latest (0.7.0)
0.7.0
0.6.2
0.6.1
0.6.0
0.5.9
celery written in nodejs
github.com/dr-coton/celery.node.fork
dr-coton/celery.node.fork
@dr-coton/celery-node
/
dist
/
app
/
conf.d.ts
10 lines
(9 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
interface
CeleryConf
{
CELERY_BROKER
:
string
;
CELERY_BROKER_OPTIONS
:
object
;
CELERY_BACKEND
:
string
;
CELERY_BACKEND_OPTIONS
:
object
;
CELERY_QUEUE
:
string
;
TASK_PROTOCOL
:
number
; }
export
declare
function
defaultConf
(
):
CeleryConf
;