UNPKG
rxjs-es
Version:
latest (5.0.0-beta.12)
5.0.0-beta.12
5.0.0-beta.11
5.0.0-beta.10
5.0.0-beta.9
5.0.0-beta.8
5.0.0-beta.7
5.0.0-beta.6
5.0.0-beta.5
5.0.0-beta.4
5.0.0-beta.3
5.0.0-beta.2
5.0.0-beta.1
5.0.0-beta.0
5.0.0-alpha.14
5.0.0-alpha.13
5.0.0-alpha.12
Reactive Extensions for modern JavaScript
github.com/ReactiveX/RxJS
ReactiveX/RxJS
rxjs-es
/
testing
/
SubscriptionLoggable.d.ts
9 lines
(8 loc)
•
286 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Scheduler
}
from
'../Scheduler'
;
import
{
SubscriptionLog
}
from
'./SubscriptionLog'
;
export
declare
class
SubscriptionLoggable
{
subscriptions
:
SubscriptionLog
[];
scheduler
:
Scheduler
;
logSubscribedFrame
():
number
;
logUnsubscribedFrame
(
index
:
number
):
void
; }