YesPlayMusic/netease_api/module_example/test.ts

10 lines
178 B
TypeScript
Raw Normal View History

2021-03-06 22:04:18 +08:00
import { banner, lyric } from 'NeteaseCloudMusicApi'
banner({ type: 0 }).then((res) => {
console.log(res)
})
lyric({
id: '33894312',
}).then((res) => {
console.log(res)
})