13 lines
442 B
JavaScript
13 lines
442 B
JavaScript
|
var SubscriptionLog = /*@__PURE__*/ (function () {
|
||
|
function SubscriptionLog(subscribedFrame, unsubscribedFrame) {
|
||
|
if (unsubscribedFrame === void 0) {
|
||
|
unsubscribedFrame = Number.POSITIVE_INFINITY;
|
||
|
}
|
||
|
this.subscribedFrame = subscribedFrame;
|
||
|
this.unsubscribedFrame = unsubscribedFrame;
|
||
|
}
|
||
|
return SubscriptionLog;
|
||
|
}());
|
||
|
export { SubscriptionLog };
|
||
|
//# sourceMappingURL=SubscriptionLog.js.map
|