Removing all "any" from back.
To do this, I used generic-type-guard package which generates both an interface AND a valid type guard from code. With this, we are 100% sure that the messages we receive are validated at runtime! The client cannot pass us an object that is invalid! \o/
This commit is contained in:
parent
ac0b7a7361
commit
a373626e24
11 changed files with 113 additions and 59 deletions
5
back/src/Model/Websocket/UserInGroupInterface.ts
Normal file
5
back/src/Model/Websocket/UserInGroupInterface.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
export interface UserInGroupInterface {
|
||||
userId: string,
|
||||
name: string,
|
||||
initiator: boolean
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue