poe-api-manager
Version:
poe.ninja and poe.watch API
18 lines (17 loc) • 491 B
TypeScript
import WatchViewModule from "./modules/poe.watch/WatchViewModule";
/**
* Represents an API for interacting with a poe.watch service.
* @class
*/
export declare class WatchAPI {
/**
* The WatchViewModule instance associated with this API.
* @type {WatchViewModule}
*/
view: WatchViewModule;
/**
* Creates an instance of WatchAPI.
* @param {string} league - The league for which the API should be initialized.
*/
constructor(league: string);
}