denon-client
Version:
A handy denon avr client. Allows controlling the AVR and listen to events. May work with Marantz devices too.
44 lines (37 loc) • 442 B
JavaScript
;
/**
* The mute options
*
* @class MuteOptions
*/
/**
* The On attribute.
*
* @default ON
* @property {string} On
*/
/**
* The Off attribute.
*
* @default OFF
* @property {string} Off
*/
/**
* The Status attribute.
*
* @default ?
* @property {string} Status
*/
/**
* The Base attribute.
*
* @default MU
* @private
* @property {string} Base
*/
module.exports = {
On: 'ON',
Off: 'OFF',
Status: '?',
Base: 'MU'
};