react-native-track-player
Version:
A fully fledged audio module created for music apps
17 lines (16 loc) • 417 B
TypeScript
export interface PlaybackMetadataReceivedEvent {
/** The metadata source */
source: string;
/** The track title */
title: string | null;
/** The track url */
url: string | null;
/** The track artist */
artist: string | null;
/** The track album */
album: string | null;
/** The track date */
date: string | null;
/** The track genre */
genre: string | null;
}