We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c5ab01 commit 0dd9b4bCopy full SHA for 0dd9b4b
src/message/TestMessage.ts
@@ -0,0 +1,10 @@
1
+import { Notification } from 'rxjs/Notification';
2
+
3
+/**
4
+ * Represents interface for single metadata value emitted by HotObservable<T> or ColdObservable<T>
5
+ *
6
+ */
7
+export interface TestMessage<T = string> {
8
+ frame: number;
9
+ notification: Notification<T>;
10
+}
0 commit comments