94565d52bb
Because they need dev dependencies
13 lines
321 B
TypeScript
13 lines
321 B
TypeScript
import * as io from 'socket.io-client'
|
|
|
|
function getUserNotificationSocket (serverUrl: string, accessToken: string) {
|
|
return io(serverUrl + '/user-notifications', {
|
|
query: { accessToken }
|
|
})
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
getUserNotificationSocket
|
|
}
|