mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			450 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			450 B
		
	
	
	
		
			TypeScript
		
	
	
import * as io from 'socket.io-client'
 | 
						|
 | 
						|
function getUserNotificationSocket (serverUrl: string, accessToken: string) {
 | 
						|
  return io(serverUrl + '/user-notifications', {
 | 
						|
    query: { accessToken }
 | 
						|
  })
 | 
						|
}
 | 
						|
 | 
						|
function getLiveNotificationSocket (serverUrl: string) {
 | 
						|
  return io(serverUrl + '/live-videos')
 | 
						|
}
 | 
						|
 | 
						|
// ---------------------------------------------------------------------------
 | 
						|
 | 
						|
export {
 | 
						|
  getUserNotificationSocket,
 | 
						|
  getLiveNotificationSocket
 | 
						|
}
 |