import type { Executables } from '../../../execution/Executables'; import type { string_mime_type } from '../../../types/typeAliases'; import type { string_promptbook_documentation_url } from '../../../types/typeAliases'; import type { string_title } from '../../../types/typeAliases'; import type { Registered } from '../../../utils/$Register'; /** * @@@ * * @@@ * x) `Scraper` * x) `Converter` * x) `ScraperConstructor` * x) `Registered` * x) `ExecutionTools` * x) `ScraperAndConverterMetadata` * x) `PrepareAndScrapeOptions` * x) `ScraperConfiguration` * x) `ScraperOptions` */ export type ScraperAndConverterMetadata = Registered & { /** * @@@ */ readonly title: string_title; /** * Mime types that this scraper can handle */ readonly mimeTypes: ReadonlyArray; /** * @@@ */ readonly isAvilableInBrowser: boolean; /** * @@@ */ readonly requiredExecutables: ReadonlyArray>; /** * Link to documentation */ readonly documentationUrl: string_promptbook_documentation_url; };