This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct AMAlbumDetailsView: View { | |
let albumArt: Image | |
let title: String | |
let artist: String | |
let genre: String | |
let releaseYear: String | |
let quality: String | |
let tracks: [String] | |
@State private var playingTrack: String? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare interface Api { | |
runRhino(source: string); | |
} | |
declare interface Bot { | |
/** | |
* ๋ฉ์์ง๋ฅผ ์ ์กํฉ๋๋ค | |
* @param room ์ ์กํ ๋ฐฉ์ ์ด๋ฆ | |
* @param message ์ ์กํ ๋ฉ์์ง | |
*/ |