@slash-tmp/rgaa-scraper
Version:
Scrapes RGAA's website and fetch topics, criteria and tests into a JSON format.
6 lines (5 loc) • 322 B
TypeScript
import { RgaaFilter, RgaaRawCriterion, RgaaRawTest } from './types';
export declare function reduceWhitespaces(str: string): string;
declare type FilterElementsFunction = (element: RgaaRawTest | RgaaRawCriterion) => boolean;
export declare function filterElements(filters?: RgaaFilter): FilterElementsFunction;
export {};