UNPKG

imt-gateway

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