import type { EventBus } from '../event-bus/Types'; import type { PlayPauseApi } from './play-pause-api/Types'; import type { PlaybackEvent, PlaybackEventMap } from './playback-api-events/events/PlaybackEventMap'; import type { TimeApi } from './time-api/Types'; import type { VolumeApi } from './volume-api/Types'; export type PlaybackApi = PlayPauseApi & TimeApi & VolumeApi & { events: EventBus; };