mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-22 17:19:08 +00:00
9 lines
286 B
TypeScript
9 lines
286 B
TypeScript
![]() |
import { Scheduler } from '../Scheduler';
|
||
|
import { SubscriptionLog } from './SubscriptionLog';
|
||
|
export declare class SubscriptionLoggable {
|
||
|
subscriptions: SubscriptionLog[];
|
||
|
scheduler: Scheduler;
|
||
|
logSubscribedFrame(): number;
|
||
|
logUnsubscribedFrame(index: number): void;
|
||
|
}
|