import AndroidAttemptParameters from './AndroidAttemptParameters'; import AndroidDrmAttemptParameters from './AndroidDrmAttemptParameters'; /** * @group Interfaces */ export default interface AndroidNetworkConfiguration { /** * Manifest request timeouts and retry options. */ manifestAttemptParameters?: AndroidAttemptParameters; /** * Segment request timeouts and retry options. */ segmentAttemptParameters?: AndroidAttemptParameters; /** * DRM request timeouts and retry options. */ drmAttemptParameters?: AndroidDrmAttemptParameters; }