UNPKG

semantic-analysis

Version:

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

13 lines (12 loc) 305 B
import { IExtractionResult } from '../extraction'; /** * Generalization of an result validator */ export interface IValidator { /** * Inspects given result and logs the results in the result * * @param result Result to inspect */ validate(result: IExtractionResult): void; }