aes70
Version:
A controller library for the AES70 protocol.
37 lines (34 loc) • 732 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Command repertoire of OcaRamper's **Control** method.
* @class OcaRamperCommand
*/
export class OcaRamperCommand extends Enum({
Enable: 1,
Start: 2,
Halt: 3,
}) {}
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaRamperCommand}
* @member Enable
* @memberof OcaRamperCommand
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaRamperCommand}
* @member Start
* @memberof OcaRamperCommand
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaRamperCommand}
* @member Halt
* @memberof OcaRamperCommand
* @static
*/