UNPKG

react-native-track-player

Version:
12 lines (10 loc) 245 B
import { State } from '../constants'; import type { PlaybackErrorEvent } from './events'; export type PlaybackState = | { state: Exclude<State, State.Error>; } | { state: State.Error; error: PlaybackErrorEvent; };