UNPKG

imt-gateway

Version:
16 lines (12 loc) 194 B
'use strict' /** * Action. */ class Event { constructor(type, bundle, id = null) { this.type = type; this.bundle = bundle || null; this.id = id || null; } } module.exports = Event;