UNPKG

@faubulous/mentor-rdf

Version:

A library for working with RDF vocabularies with support for basic RDFS and OWL inference.

20 lines (19 loc) 712 B
import { NamedNode } from '@rdfjs/types'; /** Namespace URI of the MENTOR vocabulary. */ export declare const _MENTOR = "http://example.org/"; export declare const MENTOR: { /** A class that is defined in terms of itself. */ RecursiveClass: string; RecursiveConcept: string; /** A property that is defined in terms of itself. */ RecursiveProperty: string; }; /** Namespace URI of the mentor vocabulary. */ export declare const _mentor: NamedNode; export declare const mentor: { /** A class that is defined in terms of itself. */ RecursiveClass: NamedNode; RecursiveConcept: NamedNode; /** A property that is defined in terms of itself. */ RecursiveProperty: NamedNode; };