socket-io.ts 321 B

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