File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ export interface SubscriptionMessage {
308308}
309309
310310export interface SubscriptionListener {
311-
311+
312312 on ( event : "data" , listener : ( data : SubscriptionMessage ) => void ) : this;
313313}
314314
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ implements Abstract.RedisClient {
6969 pattern ?: string
7070 ) : void {
7171
72- let listenerList = this . _listeners [ subject ] ||
72+ let listenerList = this . _listeners [ subject ] ||
7373 ( pattern && this . _listeners [ pattern ] ) ;
7474
7575 if ( ! listenerList ) {
@@ -102,7 +102,7 @@ implements Abstract.RedisClient {
102102 let fn : Abstract . SubscriptionCallback | Readable ;
103103 fn = callback || new Readable ( {
104104 "objectMode" : true ,
105- "read" : function ( ) { }
105+ "read" ( ) { }
106106 } ) ;
107107
108108 if ( ! this . _listeners [ subject ] ) {
You can’t perform that action at this time.
0 commit comments