(message: string)
| 4 | export interface ChatAPI { |
| 5 | joinChat(username: string, notificationCallback: Function): Promise<any> |
| 6 | sendMessage(message: string): Promise<any> |
| 7 | getChatState(): Promise<any> |
| 8 | pollMessages(): Promise<any[]> |
| 9 | leaveChat(): Promise<any> |
no outgoing calls
no test coverage detected