aes70
Version:
A controller library for the AES70 protocol.
37 lines (34 loc) • 832 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Types of sampling rate converters
* @class OcaSamplingRateConverterType
*/
export class OcaSamplingRateConverterType extends Enum({
None: 0,
Synchronous: 1,
Asynchronous: 2,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaSamplingRateConverterType}
* @member None
* @memberof OcaSamplingRateConverterType
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaSamplingRateConverterType}
* @member Synchronous
* @memberof OcaSamplingRateConverterType
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaSamplingRateConverterType}
* @member Asynchronous
* @memberof OcaSamplingRateConverterType
* @static
*/