socket channels

This commit is contained in:
talksik
2022-06-03 15:47:53 -07:00
parent 9cee87887f
commit 1a79fb4c36
2 changed files with 14 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"ignore": ["**/*.test.ts", "**/*.spec.ts", "node_modules"],
"watch": ["./"],
"watch": ["./", "../common"],
"exec": "npm run start:dev",
"ext": "ts"
}
+13
View File
@@ -0,0 +1,13 @@
type SocketEvents = {
request: object
response: object
}
export const SOCKET_EVENTS: SocketEvents = {
request: {
}
response : {
}
}