mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 08:52:59 +00:00
10 lines
391 B
JavaScript
10 lines
391 B
JavaScript
var SubscriptionLog = (function () {
|
|
function SubscriptionLog(subscribedFrame, unsubscribedFrame) {
|
|
if (unsubscribedFrame === void 0) { unsubscribedFrame = Infinity; }
|
|
this.subscribedFrame = subscribedFrame;
|
|
this.unsubscribedFrame = unsubscribedFrame;
|
|
}
|
|
return SubscriptionLog;
|
|
}());
|
|
export { SubscriptionLog };
|
|
//# sourceMappingURL=SubscriptionLog.js.map
|