()
| 64 | |
| 65 | /** Returns the number of seconds elapsed since January 1, 1970 00:00:00 UTC. */ |
| 66 | export function now() { |
| 67 | return Math.floor(Date.now() / 1000) |
| 68 | } |
| 69 | |
| 70 | export interface BroadcastMessage { |
| 71 | event?: "session" |
no outgoing calls
no test coverage detected