-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
53 lines (51 loc) · 2.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Innotrade Enapso - SPARQL JS Toolbox
// (C) Copyright 2019-2020 Innotrade GmbH, Herzogenrath, NRW, Germany
// Authors: Alexander Schulze
const
{ EnapsoSPARQLJS } = require('./lib/enapso-sparql-js'),
{ EnapsoLanguageOntology } = require('./ontbuilder/enLangOnt'),
{ OntEntity } = require('./lib/ontEntity'),
{ OntTriple } = require('./lib/ontTriple'),
{ OntTripleStore } = require('./lib/ontTripleStore'),
{ OntNode } = require('./lib/ontNode'),
{ OntBlankNode } = require('./lib/ontBlankNode'),
{ OntNamedNode } = require('./lib/ontNamedNode'),
{ OntOntology } = require('./lib/ontOntology'),
{ OntClass } = require('./lib/ontClass'),
{ OntDatatypeProperty } = require('./lib/ontDatatypeProperty'),
{ OntObjectProperty } = require('./lib/ontObjectProperty'),
{ OntIndividual } = require('./lib/ontIndividual'),
{ OntRestriction } = require('./lib/ontRestriction'),
{ OntValueRestriction } = require('./lib/ontValueRestriction'),
{ OntOnlyRestriction } = require('./lib/ontOnlyRestriction'),
{ OntSomeRestriction } = require('./lib/ontSomeRestriction'),
{ OntMinRestriction } = require('./lib/ontMinRestriction'),
{ OntMaxRestriction } = require('./lib/ontMaxRestriction'),
{ OntExactlyRestriction } = require('./lib/ontExactlyRestriction'),
{ OntAnnotation } = require('./lib/ontAnnotation'),
{ OntComment } = require('./lib/ontComment')
;
module.exports = {
enspjs: {
OntEntity, OntTriple, OntTripleStore,
OntNode, OntBlankNode, OntNamedNode,
OntDatatypeProperty, OntObjectProperty,
OntOntology, OntClass, OntIndividual,
OntRestriction, OntValueRestriction,
OntOnlyRestriction, OntSomeRestriction,
OntMinRestriction, OntMaxRestriction,
OntExactlyRestriction, OntAnnotation,
OntComment,
EnapsoSPARQLJS, EnapsoLanguageOntology
},
OntEntity, OntTriple, OntTripleStore,
OntNode, OntBlankNode, OntNamedNode,
OntDatatypeProperty, OntObjectProperty,
OntOntology, OntClass, OntIndividual,
OntRestriction, OntValueRestriction,
OntOnlyRestriction, OntSomeRestriction,
OntMinRestriction, OntMaxRestriction,
OntExactlyRestriction, OntAnnotation,
OntComment,
EnapsoSPARQLJS, EnapsoLanguageOntology
}