mirror of
https://github.com/NeteaseCloudMusicApiEnhanced/api-enhanced.git
synced 2025-10-22 22:53:09 +00: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)
|
|
})
|