aes70
Version:
A controller library for the AES70 protocol.
45 lines (42 loc) • 896 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Types of media clocks.
* @class OcaMediaClockType
*/
export class OcaMediaClockType extends Enum({
None: 0,
Internal: 1,
Network: 2,
External: 3,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaMediaClockType}
* @member None
* @memberof OcaMediaClockType
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaMediaClockType}
* @member Internal
* @memberof OcaMediaClockType
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaMediaClockType}
* @member Network
* @memberof OcaMediaClockType
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaMediaClockType}
* @member External
* @memberof OcaMediaClockType
* @static
*/