Get a typed version of the global room Use this when you want the room with your specific message types
const MyMessages = { ... }registerMessages(MyMessages) // Register firstconst room = getRoom<typeof MyMessages>() // Then get typed version
Get a typed version of the global room Use this when you want the room with your specific message types
Example