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