UNPKG

helpscout-mailbox-api

Version:
14 lines (10 loc) 220 B
'use strict'; class TeamMember { constructor (client) { this.client = client; } list (teamId, params = {}) { return this.client.get(`teams/${teamId}/members`, params); } } module.exports = TeamMember;