UNPKG

rdf-dataset-fragmenter

Version:
11 lines (10 loc) 331 B
import type * as RDF from '@rdfjs/types'; import type { IQuadMatcher } from './IQuadMatcher'; /** * Matches a quad by the given predicate regex. */ export declare class QuadMatcherPredicate implements IQuadMatcher { private readonly predicate; constructor(predicateRegex: string); matches(quad: RDF.Quad): boolean; }