UNPKG

@backgroundjs/core

Version:

An extendible background job queue for js/ts applications

9 lines 220 B
// 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