UNPKG

itchio-metadata

Version:

A Node.js package to fetch and parse metadata for games hosted on Itch.io, providing detailed information about the latest game versions.

8 lines (7 loc) 314 B
import { FetchGameDataParams, GameMetadata } from "./types"; export { FetchGameDataParams, GameMetadata } from "./types"; export declare const fetchItchGameData: ({ itchApiKey, author, gameTitle, gameUrl, }?: FetchGameDataParams) => Promise<{ status: boolean; message: string; data?: GameMetadata; }>;