Browse Source

Add websocket method enum to Request API

dev
David Ludwig 4 years ago
parent
commit
e9639daa3f
2 changed files with 7 additions and 0 deletions
  1. +1
    -0
      api/request/src/index.ts
  2. +6
    -0
      api/request/src/websocket.ts

+ 1
- 0
api/request/src/index.ts View File

@ -1,2 +1,3 @@
export * from "./schema";
export * from "./validation";
export * from "./websocket";

+ 6
- 0
api/request/src/websocket.ts View File

@ -0,0 +1,6 @@
/**
* Available websocket server-side methods to be invoked by the client
*/
export enum WebSocketMethod {
TicketProgress = "ticket_progress"
}

Loading…
Cancel
Save