/** * The Spotify player context * * @export * @interface PlayerContext */ export default interface PlayerContext { /** * The title of the Context * * @type {string} * @memberof PlayerContext */ title: string; /** * The uri of the Context * * @type {string} * @memberof PlayerContext */ uri: string; }