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