@faubulous/mentor-rdf
Version:
A library for working with RDF vocabularies with support for basic RDFS and OWL inference.
24 lines (23 loc) • 914 B
TypeScript
import { NamedNode } from '@rdfjs/types';
/** Namespace URI of the I18N vocabulary. */
export declare const _I18N = "workspace:src/rdf/tests/vocabularies/i18n.ttl#";
export declare const I18N: {
/** This class has language tags in all languages. */
Class1: string;
/** This class only has a label with a German language tag. */
Class2: string;
Class3: string;
/** This class does not have any language tag on the label, but a tagged comment. */
Class4: string;
};
/** Namespace URI of the i18n vocabulary. */
export declare const _i18n: NamedNode;
export declare const i18n: {
/** This class has language tags in all languages. */
Class1: NamedNode;
/** This class only has a label with a German language tag. */
Class2: NamedNode;
Class3: NamedNode;
/** This class does not have any language tag on the label, but a tagged comment. */
Class4: NamedNode;
};