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