bandcamp-fetch/examples/article/getCategories.ts

7 lines
170 B
TypeScript
Raw Normal View History

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