UNPKG

itch-scraper

Version:

Itch scraper is a scraping tool to get data from itch.io pages.

15 lines (12 loc) 206 B
export type GameInput = { authorName: string; title: string; }; export type AuthorInput = { name: string; }; export type Game = { title: string; description: string; screenshots: string[]; };