class Ask { constructor(client) { this.client = client; } async ask_game(asked) { response = await this.client._post(`/api/chat/ask/`); } async ask_game_canceled() { } async ask_game_accepted() { } async ask_game_refused() { } }