import AndroidCatchupConfigurationTimeReference from './AndroidCatchupConfigurationTimeReference'; import AndroidCatchupConfigurationType from './AndroidCatchupConfigurationType'; /** * @group Interfaces */ export default interface AndroidCatchupConfigurationNone { /** * The time reference to which the thresholds will be relative to. */ timeReference: AndroidCatchupConfigurationTimeReference; /** * The strategy of the catchup behavior. * @see {@link AndroidCatchupConfigurationType} */ type: AndroidCatchupConfigurationType.None; /** * Directs the player to seek to catch up an upper time threshold on * video segment download timeout Errors. */ seekOnDownloadError?: boolean; }