UNPKG

rdf-dataset-fragmenter

Version:
8 lines (7 loc) 160 B
import type * as RDF from '@rdfjs/types'; /** * Modifiers an RDF term value. */ export interface IValueModifier { apply: (value: RDF.Term) => RDF.Term; }