UNPKG

theweatherapi

Version:

An NPM Library used to get weather info

13 lines (10 loc) 323 B
const BaseAPI = require('./BaseAPI'); class SearchAPI extends BaseAPI { constructor() { super() this.endpoint = 'current'; this.method = this.apiTypes.v1[this.endpoint]?.method; this.params = this.apiTypes.v1[this.endpoint]?.params; } } module.exports = SearchAPI;