node-musixmatch-api
Version:
Advanced API library for seamless Musixmatch integration.
20 lines • 446 B
TypeScript
interface TrackMood {
message: {
header: {
status_code: number;
execute_time: number;
};
body: {
mood_list: Array<{
label: string;
value: number;
}>;
raw_data: {
valence: number;
arousal: number;
};
};
};
}
export { TrackMood };
//# sourceMappingURL=lyrics.mood.d.ts.map