UNPKG

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) 451 B
'use strict'; /** * The volume options * * @class VolumeOptions */ /** * The Up attribute. * * @default UP * @property {string} Up */ /** * The Down attribute. * * @default DOWN * @property {string} Down */ /** * The Status attribute. * * @default ? * @property {string} Status */ /** * The Base attribute. * * @default MV * @private * @property {string} Base */ module.exports = { Up: 'UP', Down: 'DOWN', Status: '?', Base: 'MV' };