poe-api-manager
Version:
poe.ninja and poe.watch API
12 lines (11 loc) • 419 B
TypeScript
/**
* Represents the interface for interacting with PoeWatch data.
*/
export default interface IPoeWatch {
/**
* Retrieves data from PoeWatch API.
* @param requestedProperties Optional array of properties to include in the response.
* @returns A promise that resolves to an array of objects representing the retrieved data.
*/
getData(requestedProperties?: string[]): Promise<object[]>;
}