address codefactor suggestion
This commit is contained in:
@@ -76,13 +76,9 @@ const getLinearWsKeyForTopic = (topic: string) => {
|
||||
}
|
||||
|
||||
export declare interface WebsocketClient {
|
||||
on(event: 'open', listener: ({ wsKey: string, event: any }) => void): this;
|
||||
on(event: 'reconnected', listener: ({ wsKey: string, event: any }) => void): this;
|
||||
on(event: 'reconnect', listener: () => void): this;
|
||||
on(event: 'close', listener: () => void): this;
|
||||
on(event: 'response', listener: (response: any) => void): this;
|
||||
on(event: 'update', listener: (response: any) => void): this;
|
||||
on(event: 'error', listener: (response: any) => void): this;
|
||||
on(event: 'open' | 'reconnected', listener: ({ wsKey: string, event: any }) => void): this;
|
||||
on(event: 'response' | 'update' | 'error', listener: (response: any) => void): this;
|
||||
on(event: 'reconnect' | 'close', listener: () => void): this;
|
||||
}
|
||||
|
||||
export class WebsocketClient extends EventEmitter {
|
||||
|
||||
Reference in New Issue
Block a user