Files
EeveeSpotifyReborn/Sources/EeveeSpotify/Models/Headers/SPTPlayerTrack.swift
T

10 lines
232 B
Swift

import Foundation
@objc protocol SPTPlayerTrack {
func setMetadata(_ metadata: [String:String])
func extractedColorHex() -> String
func trackTitle() -> String
func artistTitle() -> String
func URI() -> SPTURL
}