rdf-dataset-fragmenter
Version:
Fragments an RDF dataset into multiple parts
11 lines (10 loc) • 331 B
TypeScript
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;
}