Skip to content
#

maintained

Here are 41 public repositories matching this topic...

queicherius
queicherius commented Apr 10, 2019

Something ala:

/**
 * Information about the available world bosses.
 *
 * Usage: `api().worldbosses()`
 */
class WorldbossesEndpoint extends AbstractEndpoint {
  constructor (client) {
    super(client)
    this.url = '/v2/worldbosses'
    this.isPaginated = true
    this.isBulk = true
    this.isLocalized = true
    this.cacheTime = 24 * 60 * 60
  }
}

// ... code ...
`

Improve this page

Add a description, image, and links to the maintained topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the maintained topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.