numex-sdk/src/resources/search.js

12 lines
174 B
JavaScript
Raw Normal View History

class Search {
constructor(client) {
this.client = client;
}
async query(params) {
return this.client.post('/search', params);
}
}
module.exports = Search;