fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
36 lines (35 loc) • 2.29 kB
TypeScript
import { OWLAllValuesFromProperty } from './OwlAllValuesFromProperty';
import { OWLDatatypeProperty } from './OwlDatatypeProperty';
import { OWLDeprecatedProperty } from './OwlDeprecatedProperty';
import { OWLDisjointWith } from './OwlDisjointWith';
import { OWLEquivalentProperty } from './OwlEquivalentProperty';
import { OWLFunctionalProperty } from './OwlFunctionalProperty';
import { OWLIndividualProperty } from './OwlIndividualProperty';
import { OWLInverseFunctionalProperty } from './OwlInverFunctionalProperty';
import { OWLObjectProperty } from './OwlObjectProperty';
import { OWLSomeValuesFromProperty } from './OwlSomeValuesFromProperty';
import { OWLSymmetricProperty } from './OwlSymmetricProperty';
import { OWLTransitiveProperty } from './OwlTransitiveProperty';
import { RDFProperty } from './RdfProperty';
import { RDFSSubClassOf } from './RdfsSubClassOf';
import { SetOperatorProperty } from './SetOperatorProperty';
export { OWLAllValuesFromProperty, OWLDatatypeProperty, OWLDeprecatedProperty, OWLDisjointWith, OWLEquivalentProperty, OWLFunctionalProperty, OWLIndividualProperty, OWLInverseFunctionalProperty, OWLObjectProperty, OWLSomeValuesFromProperty, OWLSymmetricProperty, OWLTransitiveProperty, RDFProperty, RDFSSubClassOf, SetOperatorProperty };
export declare const PropertyTypes: {
'owl:allValuesFrom': typeof OWLAllValuesFromProperty;
'owl:DatatypeProperty': typeof OWLDatatypeProperty;
'owl:DeprecatedProperty': typeof OWLDeprecatedProperty;
'owl:OwlDisjointWith': typeof OWLDisjointWith;
'owl:equivalentProperty': typeof OWLEquivalentProperty;
'owl:FunctionalProperty': typeof OWLFunctionalProperty;
'owl:individualProperty': typeof OWLIndividualProperty;
'owl:InverseFunctionalProperty': typeof OWLInverseFunctionalProperty;
'owl:ObjectProperty': typeof OWLObjectProperty;
'owl:someValuesFrom': typeof OWLSomeValuesFromProperty;
'owl:SymmetricProperty': typeof OWLSymmetricProperty;
'owl:TransitiveProperty': typeof OWLTransitiveProperty;
'rdf:Property': typeof RDFProperty;
'rdfs:subClassOf': typeof RDFSSubClassOf;
setOperatorProperty: typeof SetOperatorProperty;
};
export declare const PropertyTypesMap: {};
export declare const PropertyTypesList: string[];