aes70
Version:
A controller library for the AES70 protocol.
37 lines (34 loc) • 749 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Options for media playback
* @class OcaMediaPlayOption
*/
export class OcaMediaPlayOption extends Enum({
Normal: 0,
Autoclose: 1,
RepeatInterval: 2,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaMediaPlayOption}
* @member Normal
* @memberof OcaMediaPlayOption
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaMediaPlayOption}
* @member Autoclose
* @memberof OcaMediaPlayOption
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaMediaPlayOption}
* @member RepeatInterval
* @memberof OcaMediaPlayOption
* @static
*/