/** * @group Enums */ declare enum AndroidCatchupConfigurationTimeReference { /** * Will use the amount of buffer ahead as the time reference. */ BufferHead = "bufferHead", /** * Will use the media end as the time reference. */ MediaEnd = "mediaEnd" } export default AndroidCatchupConfigurationTimeReference;