UNPKG

tmdb-js-wrapper

Version:

A JavaScript wrapper package for The Movie Database API.

17 lines (14 loc) 268 B
/**@module tmdb-js/api */ /** * A user of the TMDb API. */ exports.TmdbApiUser = class { _apiKey; /** * Initializes this object. * @param {string} apiKey The TMDb API key. */ constructor(apiKey) { this._apiKey = apiKey; } };