Last analyzed 276c43f 4 months ago
Default analysis branch is
Currently analyzing run
Detected usage of the any type JS-0323
Anti-pattern
6 months ago7 months old
Unexpected any. Specify a different type
 5import {language} from '../constants'
 6class SocketConnection {
 7  streamingURL: string
 8  streamingclient: any 9  onIncomingMessage: (message: string) => void
10  onSocketConnectionChange: (toggle: boolean) => void
11