UNPKG

semantic-analysis

Version:

Extensible semantic Structured Data analysis library for Microdata and JSON-LD

8 lines (7 loc) 296 B
import { IExtractionResult, IExtractor } from "./IExtractor"; export declare class ExtractorContainer implements IExtractor { private readonly extractors; constructor(...extractor: IExtractor[]); add(...extractor: IExtractor[]): this; readonly extract: () => IExtractionResult; }