Setup web-socket connection

- Add authentification socket.io with jwt token
This commit is contained in:
gparant 2020-04-04 14:05:18 +02:00
parent cb11acc428
commit ba47d8b1d4
5 changed files with 120 additions and 3 deletions

View file

@ -0,0 +1,5 @@
import {Socket} from "socket.io";
export interface ExSocketInterface extends Socket {
token: object;
}