Variable EDDYQ_INSTANCEConst

    EDDYQ_INSTANCE: "EDDYQ_INSTANCE"

    DI token for the live Eddyq client instance. Equivalent to using @InjectEddyq() — reach for this form when you can't use a parameter decorator, e.g. inside a custom useFactory provider.

    {
    provide: 'MY_QUEUE_WRAPPER',
    useFactory: (eddyq: Eddyq) => new Wrapper(eddyq),
    inject: [EDDYQ_INSTANCE],
    }