import type { Capability, RatingType } from '../constants'; import type { AndroidOptions } from './AndroidOptions'; import type { FeedbackOptions } from './FeedbackOptions'; import type { ResourceObject } from './ResourceObject'; export interface UpdateOptions { android?: AndroidOptions; ratingType?: RatingType; forwardJumpInterval?: number; backwardJumpInterval?: number; progressUpdateEventInterval?: number; likeOptions?: FeedbackOptions; dislikeOptions?: FeedbackOptions; bookmarkOptions?: FeedbackOptions; capabilities?: Capability[]; notificationCapabilities?: Capability[]; icon?: ResourceObject; playIcon?: ResourceObject; pauseIcon?: ResourceObject; stopIcon?: ResourceObject; previousIcon?: ResourceObject; nextIcon?: ResourceObject; rewindIcon?: ResourceObject; forwardIcon?: ResourceObject; color?: number; } //# sourceMappingURL=UpdateOptions.d.ts.map