bandcamp-fetch/examples/show/list.ts

7 lines
158 B
TypeScript
Raw Permalink Normal View History

2023-06-10 16:52:27 +02:00
import bcfetch from '../../';
import util from 'util';
bcfetch.show.list().then((results) => {
console.log(util.inspect(results, false, null, false));
});