I'm currently working on API Client for node.
Since berserk is a well known client for Lichess, would it be better to match the method names with berserk?
For instance, berserk: client.account.get, equine(node): client.info().
Would it be better for the devs to match the name as get()?
More examples:
Berserk:
client.board.abort_game
client.board.offer_draw
Equine:
client.board.abort()
client.board.draw()