mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
13 lines
379 B
Swift
13 lines
379 B
Swift
import Foundation
|
|
|
|
@objc protocol SPTEncoreAttributedString {
|
|
func initWithString(_ string: String, typeStyle: SPTEncoreTypeStyle, attributes: SPTEncoreAttributes) -> SPTEncoreAttributedString
|
|
func text() -> String
|
|
|
|
@available(iOS 15.0, *)
|
|
func typeStyle() -> SPTEncoreTypeStyle
|
|
|
|
@available(iOS 15.0, *)
|
|
func attributes() -> SPTEncoreAttributes
|
|
}
|