@slash-tmp/rgaa-scraper
Version:
Scrapes RGAA's website and fetch topics, criteria and tests into a JSON format.
10 lines (9 loc) • 403 B
TypeScript
import { RgaaRootWrapper } from './RgaaRootWrapper';
import type { RgaaRawScraperResult, RgaaRawTest, RgaaTest, RgaaCriterion, RgaaTopic } from './types';
export default class RgaaTestWrapper extends RgaaRootWrapper implements RgaaTest {
id: string;
title: string;
constructor(data: RgaaRawTest, root: RgaaRawScraperResult);
get criterion(): RgaaCriterion;
get topic(): RgaaTopic;
}