@kaufman-bot/html-scraper-server
Version:
Html scraper commands and tools
18 lines (17 loc) • 446 B
TypeScript
export declare const SCRAPER_CONFIG = "SCRAPER_CONFIG";
export interface ScraperConfig {
title: string;
uri: string;
timeout?: number;
contentSelector: string;
contentLength?: number;
contentCodepage?: string;
spyWords: string[];
removeWords?: string[];
name: string;
descriptions: string;
usage: string[];
headers?: Record<string, string>[];
contextUsage?: string[];
category: string[];
}