| 1 | interface BroadcastMessage { |
| 2 | event?: 'session'; |
| 3 | data?: { trigger?: 'signout' | 'getSession' }; |
| 4 | clientId: string; |
| 5 | timestamp: number; |
| 6 | } |
| 7 | |
| 8 | export interface CtxOrReq { |
| 9 | req?: any; |
nothing calls this directly
no outgoing calls
no test coverage detected