itch-scraper
Version:
Itch scraper is a scraping tool to get data from itch.io pages.
11 lines (9 loc) • 302 B
text/typescript
import { getGame, getGameTitle, getGameDescription, getGameScreenshots } from './game';
export { getGame, getGameTitle, getGameDescription, getGameScreenshots } from './game';
export * from './helpers/inputs';
export default {
getGame,
getGameDescription,
getGameScreenshots,
getGameTitle,
};