UNPKG

aes70

Version:

A controller library for the AES70 protocol.

38 lines (35 loc) 916 B
/* * This file has been generated. */ import { Enum } from './Enum.js'; /** * enum that describes whether a port is a source (= sends program into the * network; "talker") or sink (=receives program from the network; "listener") * @class OcaNetworkMediaSourceOrSink */ export class OcaNetworkMediaSourceOrSink extends Enum({ None: 0, Source: 1, Sink: 2, }) {} /** * Singleton object corresponding to the entry with value ``0``. * @type {OcaNetworkMediaSourceOrSink} * @member None * @memberof OcaNetworkMediaSourceOrSink * @static */ /** * Singleton object corresponding to the entry with value ``1``. * @type {OcaNetworkMediaSourceOrSink} * @member Source * @memberof OcaNetworkMediaSourceOrSink * @static */ /** * Singleton object corresponding to the entry with value ``2``. * @type {OcaNetworkMediaSourceOrSink} * @member Sink * @memberof OcaNetworkMediaSourceOrSink * @static */