aes70
Version:
A controller library for the AES70 protocol.
20 lines (17 loc) • 319 B
TypeScript
export declare class OcaVariant {
/**
* A class holding the value of an OcaVariant.
* @class OcaVariant
*/
constructor(index: number, value: unknown);
/**
* The index of the variant alternative.
* @type number
*/
Index: number;
/**
* The value.
* @type any
*/
Value: unknown;
}