added missing getValue() definition for Rx.BehaviorSubject

This commit is contained in:
Martin Obert
2015-07-21 12:30:23 +02:00
parent 8f51d25ad3
commit 07e3d201c0

View File

@@ -7,6 +7,7 @@
declare module Rx {
export interface BehaviorSubject<T> extends Subject<T> {
getValue(): T;
}
interface BehaviorSubjectStatic {