10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
|
import bcfetch from '../../';
|
||
|
|
||
|
const params = {
|
||
|
genre: 'ambient'
|
||
|
};
|
||
|
|
||
|
bcfetch.discovery.sanitizeDiscoverParams(params).then((results) => {
|
||
|
console.log(results);
|
||
|
});
|