refactor star

This commit is contained in:
austinried
2022-03-20 09:33:15 +09:00
parent 1803e9dc7c
commit a15159014c
10 changed files with 122 additions and 146 deletions

View File

@@ -129,6 +129,14 @@ export class GetTopSongsResponse {
}
}
export class GetSongResponse {
song: ChildElement
constructor(xml: Document) {
this.song = new ChildElement(xml.getElementsByTagName('song')[0])
}
}
//
// Album/song lists
//