UNPKG

cloudhub-playback-sdk

Version:

CloudHubPlaybackSDK

15 lines (14 loc) 368 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Action { constructor(jsonString, room = {}) { this.room = room; if (jsonString != null) { for (let key in jsonString) { // @ts-ignore this[key] = jsonString[key]; } } } } exports.default = Action;