Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SubscriptionLog.js 263B

1234567
  1. export class SubscriptionLog {
  2. constructor(subscribedFrame, unsubscribedFrame = Number.POSITIVE_INFINITY) {
  3. this.subscribedFrame = subscribedFrame;
  4. this.unsubscribedFrame = unsubscribedFrame;
  5. }
  6. }
  7. //# sourceMappingURL=SubscriptionLog.js.map