aes70
Version:
A controller library for the AES70 protocol.
28 lines (24 loc) • 494 B
TypeScript
/*
* This file has been generated.
*/
/**
* Media track function. Controls handling of a track during
* **OcaMediaRecorderPlayer** operations.
* @enum {number}
* @readonly
*/
export declare const OcaMediaTrackFunction: {
/**
* Entry with value ``1``.
*/
PlayInPlayMode: number;
/**
* Entry with value ``2``.
*/
PlayInRecordMode: number;
/**
* Entry with value ``4``.
*/
RecordInRecordMode: number;
};
export declare type IOcaMediaTrackFunction = number;