9 lines
202 B
JavaScript
9 lines
202 B
JavaScript
|
/**
|
||
|
* Events fired from the remote control module through the EventEmitter.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Notifies about remote control active session status changes.
|
||
|
*/
|
||
|
export const ACTIVE_CHANGED = 'active-changed';
|