UNPKG

helpscout-mailbox-api

Version:
14 lines (10 loc) 179 B
'use strict'; class Tag { constructor (client) { this.client = client; } list (params = {}) { return this.client.get('tags', params); } } module.exports = Tag;