test.ts 178 B

123456789
  1. import { banner, lyric } from 'NeteaseCloudMusicApi'
  2. banner({ type: 0 }).then((res) => {
  3. console.log(res)
  4. })
  5. lyric({
  6. id: '33894312',
  7. }).then((res) => {
  8. console.log(res)
  9. })