aes70
Version:
A controller library for the AES70 protocol.
45 lines (42 loc) • 1 kB
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Interpolation law for ramper to use.
* @class OcaRamperInterpolationLaw
*/
export class OcaRamperInterpolationLaw extends Enum({
Linear: 1,
ReverseLinear: 2,
Sine: 3,
Exponential: 4,
}) {}
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaRamperInterpolationLaw}
* @member Linear
* @memberof OcaRamperInterpolationLaw
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaRamperInterpolationLaw}
* @member ReverseLinear
* @memberof OcaRamperInterpolationLaw
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaRamperInterpolationLaw}
* @member Sine
* @memberof OcaRamperInterpolationLaw
* @static
*/
/**
* Singleton object corresponding to the entry with value ``4``.
* @type {OcaRamperInterpolationLaw}
* @member Exponential
* @memberof OcaRamperInterpolationLaw
* @static
*/