UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

19 lines (18 loc) 1.63 kB
import { OWLDatatypeProperty } from './implementation/OwlDatatypeProperty'; import { OWLDeprecatedProperty } from './implementation/OwlDeprecatedProperty'; import { OWLIndividualProperty } from './implementation/OwlIndividualProperty'; import { OWLFunctionalProperty } from './implementation/OwlFunctionalProperty'; import { OWLSymmetricProperty } from './implementation/OwlSymmetricProperty'; import { OWLEquivalentProperty } from './implementation/OwlEquivalentProperty'; import { RDFProperty } from './implementation/RdfProperty'; import { OWLSomeValuesFromProperty } from './implementation/OwlSomeValuesFromProperty'; import { OWLObjectProperty } from './implementation/OwlObjectProperty'; import { SetOperatorProperty } from './implementation/SetOperatorProperty'; import { OWLTransitiveProperty } from './implementation/OwlTransitiveProperty'; import { OWLInverseFunctionalProperty } from './implementation/OwlInverFunctionalProperty'; import { RDFSSubClassOf } from './implementation/RdfsSubClassOf'; import { OWLDisjointWith } from './implementation/OwlDisjointWith'; import { OWLAllValuesFromProperty } from './implementation/OwlAllValuesFromProperty'; export declare class PropertyFactory { static GetProperty(graph: any, propertyType: string): OWLObjectProperty | OWLDisjointWith | OWLDatatypeProperty | SetOperatorProperty | RDFSSubClassOf | OWLAllValuesFromProperty | OWLDeprecatedProperty | OWLEquivalentProperty | OWLFunctionalProperty | OWLInverseFunctionalProperty | OWLSymmetricProperty | OWLSomeValuesFromProperty | OWLTransitiveProperty | RDFProperty | OWLIndividualProperty | undefined; }