1 2 3 4 5 6 7 8 9 10 11 12 13
import * as io from 'socket.io-client' function getUserNotificationSocket (serverUrl: string, accessToken: string) { return io(serverUrl + '/user-notifications', { query: { accessToken } }) } // --------------------------------------------------------------------------- export { getUserNotificationSocket }