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.

SubscriptionLoggable.d.ts 286B

12345678
  1. import { Scheduler } from '../Scheduler';
  2. import { SubscriptionLog } from './SubscriptionLog';
  3. export declare class SubscriptionLoggable {
  4. subscriptions: SubscriptionLog[];
  5. scheduler: Scheduler;
  6. logSubscribedFrame(): number;
  7. logUnsubscribedFrame(index: number): void;
  8. }