@faubulous/mentor-rdf
Version:
A library for working with RDF vocabularies with support for basic RDFS and OWL inference.
30 lines (29 loc) • 912 B
TypeScript
import { NamedNode } from '@rdfjs/types';
/** Namespace URI of the MULTI vocabulary. */
export declare const _MULTI = "http://www.example.org/";
export declare const MULTI: {
Class1: string;
Class2: string;
Class3: string;
Class4: string;
/** This is an ontology file to test edge cases for class / property / individual retrieval. */
ontology: string;
ontology2: string;
property1: string;
property2: string;
property3: string;
};
/** Namespace URI of the multi vocabulary. */
export declare const _multi: NamedNode;
export declare const multi: {
Class1: NamedNode;
Class2: NamedNode;
Class3: NamedNode;
Class4: NamedNode;
/** This is an ontology file to test edge cases for class / property / individual retrieval. */
ontology: NamedNode;
ontology2: NamedNode;
property1: NamedNode;
property2: NamedNode;
property3: NamedNode;
};