Bahmni / speech-assistant-frontend

Detected usage of the any type JS-0323
Anti-pattern
Critical
2 years ago2 years 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