myanimelist-wrapper
Version:
A comprehensive TypeScript wrapper for the Jikan API v4 (unofficial MyAnimeList API)
18 lines • 515 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SchedulesEndpoint = void 0;
class SchedulesEndpoint {
constructor(client) {
this.client = client;
}
/**
* Get anime schedules
* @param params Query parameters
* @returns Promise with anime schedules data
*/
async getSchedules(params) {
return this.client.request("/schedules", params);
}
}
exports.SchedulesEndpoint = SchedulesEndpoint;
//# sourceMappingURL=schedules.js.map