mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-23 01:42:25 +08:00
10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
import { banner, lyric } from 'NeteaseCloudMusicApi'
|
|
banner({ type: 0 }).then((res) => {
|
|
console.log(res)
|
|
})
|
|
lyric({
|
|
id: '33894312',
|
|
}).then((res) => {
|
|
console.log(res)
|
|
})
|