bandcamp-fetch/examples/show/getShow.ts

13 lines
249 B
TypeScript
Raw Normal View History

2023-06-10 16:52:27 +02:00
import bcfetch from '../../';
import util from 'util';
const showUrl = 'https://bandcamp.com/?show=421';
const params = {
showUrl
};
bcfetch.show.getShow(params).then((results) => {
console.log(util.inspect(results, false, null, false));
});