File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ interface RadioGroupOptions {
3838 group : Buffer | string
3939}
4040
41+ // eslint-disable-next-line @typescript-eslint/no-empty-interface
4142export interface Radio extends Writable < MessageLike , [ RadioGroupOptions ] > { }
4243Object . assign ( Radio . prototype , { send} )
4344
@@ -66,6 +67,7 @@ interface DishGroupOptions {
6667 group : Buffer
6768}
6869
70+ // eslint-disable-next-line @typescript-eslint/no-empty-interface
6971export interface Dish extends Readable < [ Message , DishGroupOptions ] > { }
7072Object . assign ( Dish . prototype , { receive} )
7173
Original file line number Diff line number Diff line change @@ -1026,6 +1026,7 @@ export class Publisher extends Socket {
10261026 }
10271027}
10281028
1029+ // eslint-disable-next-line @typescript-eslint/no-empty-interface
10291030export interface Publisher extends Writable { }
10301031Object . assign ( Publisher . prototype , { send} )
10311032
@@ -1125,6 +1126,7 @@ export class Subscriber extends Socket {
11251126 }
11261127}
11271128
1129+ // eslint-disable-next-line @typescript-eslint/no-empty-interface
11281130export interface Subscriber extends Readable { }
11291131Object . assign ( Subscriber . prototype , { receive} )
11301132
You can’t perform that action at this time.
0 commit comments