chimi-scraper
Version:
A TypeScript library for scraping game data from itch.io with a clean, scalable architecture
12 lines • 343 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseParser = void 0;
class BaseParser {
constructor(baseUrl, name, classPath) {
this.baseUrl = baseUrl;
this.name = name;
this.classPath = classPath;
}
}
exports.BaseParser = BaseParser;
//# sourceMappingURL=base-parser.js.map