bandcamp-fetch/examples/article/getCategories.ts
patrickkfkan be7010c217 v1.0.0
2023-06-10 22:52:27 +08:00

7 lines
170 B
TypeScript

import bcfetch from '../../';
import util from 'util';
bcfetch.article.getCategories().then((results) => {
console.log(util.inspect(results, false, null, false));
});