aes70
Version:
A controller library for the AES70 protocol.
29 lines (26 loc) • 556 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Enum that describes whether a port is for input or output.
* @class OcaIODirection
*/
export class OcaIODirection extends Enum({
Input: 1,
Output: 2,
}) {}
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaIODirection}
* @member Input
* @memberof OcaIODirection
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaIODirection}
* @member Output
* @memberof OcaIODirection
* @static
*/