UNPKG
@backgroundjs/core
Version:
latest (2.0.1)
2.0.1
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
0.1.0
An extendible background job queue for js/ts applications
@backgroundjs/core
/
dist
/
bun
/
utils
/
queue-event.js
9 lines
•
220 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// Extend standard Event with our custom data
export
class
QueueEvent
extends
Event
{
data
;
constructor
(type,
data
) {
super
(type);
this
.
data
=
data
; } }
//# sourceMappingURL=queue-event.js.map