import { State } from '../constants'; import type { PlaybackErrorEvent } from './events'; export type PlaybackState = | { state: Exclude; } | { state: State.Error; error: PlaybackErrorEvent; };