eyeling 1.32.0 → 1.32.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -3
- package/browser.d.ts +63 -0
- package/dist/browser/eyeling.browser.js +297 -14
- package/eyeling-builtins.ttl +3 -3
- package/eyeling.js +297 -14
- package/index.d.ts +221 -262
- package/lib/builtins.js +297 -14
- package/package.json +4 -3
- package/test/builtins.test.js +49 -1
package/index.d.ts
CHANGED
|
@@ -1,286 +1,245 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export type RdfJsDefaultGraph = import('@rdfjs/types').DefaultGraph;
|
|
7
|
-
export type RdfJsLiteral = import('@rdfjs/types').Literal;
|
|
8
|
-
export type RdfJsQuad = import('@rdfjs/types').Quad;
|
|
9
|
-
export type RdfJsDataFactory = import('@rdfjs/types').DataFactory<RdfJsQuad> & {
|
|
10
|
-
variable(value: string): RdfJsVariable;
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
export interface EyelingPrefixEnv {
|
|
14
|
-
_type?: 'PrefixEnv';
|
|
15
|
-
map: Record<string, string>;
|
|
16
|
-
baseIri?: string;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export interface EyelingIri {
|
|
20
|
-
_type?: 'Iri';
|
|
21
|
-
value: string;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export interface EyelingLiteral {
|
|
25
|
-
_type?: 'Literal';
|
|
26
|
-
value: string;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export interface EyelingVar {
|
|
30
|
-
_type?: 'Var';
|
|
31
|
-
name: string;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export interface EyelingBlank {
|
|
35
|
-
_type?: 'Blank';
|
|
36
|
-
label: string;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export interface EyelingListTerm {
|
|
40
|
-
_type?: 'ListTerm';
|
|
41
|
-
elems: EyelingTerm[];
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
export interface EyelingOpenListTerm {
|
|
45
|
-
_type?: 'OpenListTerm';
|
|
46
|
-
prefix: EyelingTerm[];
|
|
47
|
-
tailVar: string;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export interface EyelingGraphTerm {
|
|
51
|
-
_type?: 'GraphTerm';
|
|
52
|
-
triples: EyelingTriple[];
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export type EyelingTerm =
|
|
56
|
-
| EyelingIri
|
|
57
|
-
| EyelingLiteral
|
|
58
|
-
| EyelingVar
|
|
59
|
-
| EyelingBlank
|
|
60
|
-
| EyelingListTerm
|
|
61
|
-
| EyelingOpenListTerm
|
|
62
|
-
| EyelingGraphTerm
|
|
63
|
-
| RdfJsNamedNode
|
|
64
|
-
| RdfJsBlankNode
|
|
65
|
-
| RdfJsVariable
|
|
66
|
-
| RdfJsLiteral
|
|
67
|
-
| RdfJsQuad;
|
|
1
|
+
export interface EyelingPrefixEnv {
|
|
2
|
+
_type?: 'PrefixEnv';
|
|
3
|
+
map: Record<string, string>;
|
|
4
|
+
baseIri?: string;
|
|
5
|
+
}
|
|
68
6
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
o: EyelingTerm;
|
|
74
|
-
}
|
|
7
|
+
export interface EyelingIri {
|
|
8
|
+
_type?: 'Iri';
|
|
9
|
+
value: string;
|
|
10
|
+
}
|
|
75
11
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
isForward?: boolean;
|
|
81
|
-
isFuse?: boolean;
|
|
82
|
-
headBlankLabels?: Iterable<string> | string[];
|
|
83
|
-
__dynamicConclusionTerm?: EyelingTerm;
|
|
84
|
-
}
|
|
12
|
+
export interface EyelingLiteral {
|
|
13
|
+
_type?: 'Literal';
|
|
14
|
+
value: string;
|
|
15
|
+
}
|
|
85
16
|
|
|
86
|
-
|
|
17
|
+
export interface EyelingVar {
|
|
18
|
+
_type?: 'Var';
|
|
19
|
+
name: string;
|
|
20
|
+
}
|
|
87
21
|
|
|
88
|
-
|
|
22
|
+
export interface EyelingBlank {
|
|
23
|
+
_type?: 'Blank';
|
|
24
|
+
label: string;
|
|
25
|
+
}
|
|
89
26
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
27
|
+
export interface EyelingListTerm {
|
|
28
|
+
_type?: 'ListTerm';
|
|
29
|
+
elems: EyelingTerm[];
|
|
30
|
+
}
|
|
94
31
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
rules?: EyelingRule[] | EyelingAstBundle;
|
|
101
|
-
factsN3?: string;
|
|
102
|
-
n3Facts?: string;
|
|
103
|
-
prefixesN3?: string;
|
|
104
|
-
n3Prefixes?: string;
|
|
105
|
-
prefixes?: EyelingPrefixEnv;
|
|
106
|
-
triples?: EyelingTriple[];
|
|
107
|
-
forwardRules?: EyelingRule[];
|
|
108
|
-
frules?: EyelingRule[];
|
|
109
|
-
backwardRules?: EyelingRule[];
|
|
110
|
-
brules?: EyelingRule[];
|
|
111
|
-
queryRules?: EyelingRule[];
|
|
112
|
-
logQueryRules?: EyelingRule[];
|
|
113
|
-
qrules?: EyelingRule[];
|
|
114
|
-
ast?: EyelingAstBundle;
|
|
115
|
-
document?: EyelingAstBundle;
|
|
116
|
-
}
|
|
32
|
+
export interface EyelingOpenListTerm {
|
|
33
|
+
_type?: 'OpenListTerm';
|
|
34
|
+
prefix: EyelingTerm[];
|
|
35
|
+
tailVar: string;
|
|
36
|
+
}
|
|
117
37
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
type?: 'memory' | 'persistent';
|
|
123
|
-
backend?: 'memory' | 'level' | 'indexeddb';
|
|
124
|
-
}
|
|
38
|
+
export interface EyelingGraphTerm {
|
|
39
|
+
_type?: 'GraphTerm';
|
|
40
|
+
triples: EyelingTriple[];
|
|
41
|
+
}
|
|
125
42
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
43
|
+
export type EyelingTerm =
|
|
44
|
+
| EyelingIri
|
|
45
|
+
| EyelingLiteral
|
|
46
|
+
| EyelingVar
|
|
47
|
+
| EyelingBlank
|
|
48
|
+
| EyelingListTerm
|
|
49
|
+
| EyelingOpenListTerm
|
|
50
|
+
| EyelingGraphTerm
|
|
51
|
+
| import('@rdfjs/types').NamedNode
|
|
52
|
+
| import('@rdfjs/types').BlankNode
|
|
53
|
+
| import('@rdfjs/types').Variable
|
|
54
|
+
| import('@rdfjs/types').Literal
|
|
55
|
+
| import('@rdfjs/types').Quad;
|
|
56
|
+
|
|
57
|
+
export interface EyelingTriple {
|
|
58
|
+
_type?: 'Triple';
|
|
59
|
+
s: EyelingTerm;
|
|
60
|
+
p: EyelingTerm;
|
|
61
|
+
o: EyelingTerm;
|
|
62
|
+
}
|
|
137
63
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
api: any;
|
|
148
|
-
}
|
|
64
|
+
export interface EyelingRule {
|
|
65
|
+
_type?: 'Rule';
|
|
66
|
+
premise: EyelingTriple[];
|
|
67
|
+
conclusion: EyelingTriple[];
|
|
68
|
+
isForward?: boolean;
|
|
69
|
+
isFuse?: boolean;
|
|
70
|
+
headBlankLabels?: Iterable<string> | string[];
|
|
71
|
+
__dynamicConclusionTerm?: EyelingTerm;
|
|
72
|
+
}
|
|
149
73
|
|
|
150
|
-
|
|
74
|
+
export type EyelingAstBundle = [EyelingPrefixEnv, EyelingTriple[], EyelingRule[], EyelingRule[], EyelingRule[]?];
|
|
151
75
|
|
|
152
|
-
|
|
153
|
-
baseIri?: string | null;
|
|
154
|
-
proof?: boolean;
|
|
155
|
-
includeInputFactsInClosure?: boolean;
|
|
156
|
-
enforceHttps?: boolean;
|
|
157
|
-
rdfjs?: boolean;
|
|
158
|
-
dataFactory?: RdfJsDataFactory | null;
|
|
159
|
-
skipUnsupportedRdfJs?: boolean;
|
|
160
|
-
builtinModules?: string | string[];
|
|
161
|
-
store?: string | StoreOptions;
|
|
162
|
-
storePath?: string;
|
|
163
|
-
storeClear?: boolean;
|
|
164
|
-
onDerived?: (item: { triple: string; quad?: RdfJsQuad; quads?: RdfJsQuad[]; df: any }) => void;
|
|
165
|
-
}
|
|
76
|
+
export type N3Source = string | { n3?: string; text?: string; baseIri?: string; label?: string };
|
|
166
77
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
queryMode: boolean;
|
|
172
|
-
queryTriples: any[];
|
|
173
|
-
queryDerived: any[];
|
|
174
|
-
closureN3: string;
|
|
175
|
-
closureQuads?: RdfJsQuad[];
|
|
176
|
-
queryQuads?: RdfJsQuad[];
|
|
177
|
-
}
|
|
78
|
+
export interface N3SourceListInput {
|
|
79
|
+
sources: N3Source[];
|
|
80
|
+
scopeBlankNodes?: boolean;
|
|
81
|
+
}
|
|
178
82
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
83
|
+
export interface RdfJsReasonInput {
|
|
84
|
+
n3?: string;
|
|
85
|
+
quads?: Iterable<import('@rdfjs/types').Quad> | AsyncIterable<import('@rdfjs/types').Quad>;
|
|
86
|
+
facts?: Iterable<import('@rdfjs/types').Quad> | AsyncIterable<import('@rdfjs/types').Quad>;
|
|
87
|
+
dataset?: Iterable<import('@rdfjs/types').Quad> | AsyncIterable<import('@rdfjs/types').Quad>;
|
|
88
|
+
rules?: EyelingRule[] | EyelingAstBundle;
|
|
89
|
+
factsN3?: string;
|
|
90
|
+
n3Facts?: string;
|
|
91
|
+
prefixesN3?: string;
|
|
92
|
+
n3Prefixes?: string;
|
|
93
|
+
prefixes?: EyelingPrefixEnv;
|
|
94
|
+
triples?: EyelingTriple[];
|
|
95
|
+
forwardRules?: EyelingRule[];
|
|
96
|
+
frules?: EyelingRule[];
|
|
97
|
+
backwardRules?: EyelingRule[];
|
|
98
|
+
brules?: EyelingRule[];
|
|
99
|
+
queryRules?: EyelingRule[];
|
|
100
|
+
logQueryRules?: EyelingRule[];
|
|
101
|
+
qrules?: EyelingRule[];
|
|
102
|
+
ast?: EyelingAstBundle;
|
|
103
|
+
document?: EyelingAstBundle;
|
|
104
|
+
}
|
|
188
105
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
clear(): Promise<void>;
|
|
197
|
-
close(): Promise<void>;
|
|
198
|
-
}
|
|
106
|
+
export interface StoreOptions {
|
|
107
|
+
name?: string;
|
|
108
|
+
clear?: boolean;
|
|
109
|
+
path?: string;
|
|
110
|
+
type?: 'memory' | 'persistent';
|
|
111
|
+
backend?: 'memory' | 'level' | 'indexeddb';
|
|
112
|
+
}
|
|
199
113
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
114
|
+
export interface ReasonOptions {
|
|
115
|
+
proof?: boolean;
|
|
116
|
+
proofComments?: boolean;
|
|
117
|
+
noProofComments?: boolean;
|
|
118
|
+
rdf?: boolean;
|
|
119
|
+
args?: string[];
|
|
120
|
+
maxBuffer?: number;
|
|
121
|
+
builtinModules?: string | string[];
|
|
122
|
+
store?: string | StoreOptions;
|
|
123
|
+
storePath?: string;
|
|
124
|
+
storeClear?: boolean;
|
|
125
|
+
}
|
|
209
126
|
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
): ReasonStreamResult;
|
|
222
|
-
export function reasonRdfJs(
|
|
223
|
-
input: string | RdfJsReasonInput | EyelingAstBundle | N3SourceListInput,
|
|
224
|
-
opts?: Omit<ReasonStreamOptions, 'rdfjs' | 'onDerived'>,
|
|
225
|
-
): AsyncIterable<RdfJsQuad>;
|
|
127
|
+
export interface BuiltinRegistrationContext {
|
|
128
|
+
iri: string;
|
|
129
|
+
goal: EyelingTriple;
|
|
130
|
+
subst: Record<string, EyelingTerm>;
|
|
131
|
+
facts: EyelingTriple[];
|
|
132
|
+
backRules: EyelingRule[];
|
|
133
|
+
depth: number;
|
|
134
|
+
varGen: number[];
|
|
135
|
+
maxResults?: number;
|
|
136
|
+
api: unknown;
|
|
137
|
+
}
|
|
226
138
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
139
|
+
export type BuiltinHandler = (ctx: BuiltinRegistrationContext) => Array<Record<string, EyelingTerm>>;
|
|
140
|
+
|
|
141
|
+
export interface ReasonStreamOptions {
|
|
142
|
+
baseIri?: string | null;
|
|
143
|
+
proof?: boolean;
|
|
144
|
+
includeInputFactsInClosure?: boolean;
|
|
145
|
+
enforceHttps?: boolean;
|
|
146
|
+
rdfjs?: boolean;
|
|
147
|
+
dataFactory?: import('@rdfjs/types').DataFactory<import('@rdfjs/types').Quad, import('@rdfjs/types').Quad> | null;
|
|
148
|
+
skipUnsupportedRdfJs?: boolean;
|
|
149
|
+
builtinModules?: string | string[];
|
|
150
|
+
store?: string | StoreOptions;
|
|
151
|
+
storePath?: string;
|
|
152
|
+
storeClear?: boolean;
|
|
153
|
+
onDerived?: (item: { triple: string; quad?: import('@rdfjs/types').Quad; quads?: import('@rdfjs/types').Quad[]; df: import('@rdfjs/types').DataFactory<import('@rdfjs/types').Quad, import('@rdfjs/types').Quad> }) => void;
|
|
235
154
|
}
|
|
236
155
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
export type FactStore = import('eyeling').FactStore;
|
|
156
|
+
export interface ReasonStreamResult {
|
|
157
|
+
prefixes: EyelingPrefixEnv;
|
|
158
|
+
facts: EyelingTriple[];
|
|
159
|
+
derived: EyelingTriple[];
|
|
160
|
+
queryMode: boolean;
|
|
161
|
+
queryTriples: EyelingTriple[];
|
|
162
|
+
queryDerived: EyelingTriple[];
|
|
163
|
+
closureN3: string;
|
|
164
|
+
closureQuads?: import('@rdfjs/types').Quad[];
|
|
165
|
+
queryQuads?: import('@rdfjs/types').Quad[];
|
|
166
|
+
}
|
|
249
167
|
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
): Promise<
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
):
|
|
258
|
-
|
|
259
|
-
input: string | RdfJsReasonInput | EyelingAstBundle | N3SourceListInput,
|
|
260
|
-
opts?: Omit<ReasonStreamOptions, 'rdfjs' | 'onDerived'>,
|
|
261
|
-
): AsyncIterable<RdfJsQuad>;
|
|
168
|
+
export interface FactStore {
|
|
169
|
+
add(triple: EyelingTriple, kind?: 'explicit' | 'inferred'): Promise<boolean>;
|
|
170
|
+
has(triple: EyelingTriple): Promise<boolean>;
|
|
171
|
+
kindOf?(triple: EyelingTriple): Promise<number>;
|
|
172
|
+
match(s?: EyelingTerm | null, p?: EyelingTerm | null, o?: EyelingTerm | null): AsyncIterable<EyelingTriple>;
|
|
173
|
+
batchAdd?(triples: Iterable<EyelingTriple>, kind?: 'explicit' | 'inferred'): Promise<number>;
|
|
174
|
+
clear?(): Promise<void>;
|
|
175
|
+
close?(): Promise<void>;
|
|
176
|
+
}
|
|
262
177
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
178
|
+
export class MemoryFactStore implements FactStore {
|
|
179
|
+
constructor();
|
|
180
|
+
add(triple: EyelingTriple, kind?: 'explicit' | 'inferred'): Promise<boolean>;
|
|
181
|
+
has(triple: EyelingTriple): Promise<boolean>;
|
|
182
|
+
kindOf(triple: EyelingTriple): Promise<number>;
|
|
183
|
+
match(s?: EyelingTerm | null, p?: EyelingTerm | null, o?: EyelingTerm | null): AsyncIterable<EyelingTriple>;
|
|
184
|
+
batchAdd(triples: Iterable<EyelingTriple>, kind?: 'explicit' | 'inferred'): Promise<number>;
|
|
185
|
+
clear(): Promise<void>;
|
|
186
|
+
close(): Promise<void>;
|
|
187
|
+
}
|
|
270
188
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
registerBuiltinModule: typeof registerBuiltinModule;
|
|
282
|
-
listBuiltinIris: typeof listBuiltinIris;
|
|
283
|
-
};
|
|
189
|
+
export class PersistentFactStore implements FactStore {
|
|
190
|
+
constructor(kv?: unknown, options?: StoreOptions);
|
|
191
|
+
add(triple: EyelingTriple, kind?: 'explicit' | 'inferred'): Promise<boolean>;
|
|
192
|
+
has(triple: EyelingTriple): Promise<boolean>;
|
|
193
|
+
kindOf(triple: EyelingTriple): Promise<number>;
|
|
194
|
+
match(s?: EyelingTerm | null, p?: EyelingTerm | null, o?: EyelingTerm | null): AsyncIterable<EyelingTriple>;
|
|
195
|
+
batchAdd(triples: Iterable<EyelingTriple>, kind?: 'explicit' | 'inferred'): Promise<number>;
|
|
196
|
+
clear(): Promise<void>;
|
|
197
|
+
close(): Promise<void>;
|
|
198
|
+
}
|
|
284
199
|
|
|
285
|
-
|
|
200
|
+
export function reason(
|
|
201
|
+
opts: ReasonOptions,
|
|
202
|
+
input: string | RdfJsReasonInput | EyelingAstBundle | N3SourceListInput,
|
|
203
|
+
): string;
|
|
204
|
+
export function runAsync(
|
|
205
|
+
input: string | RdfJsReasonInput | EyelingAstBundle | N3SourceListInput,
|
|
206
|
+
opts?: ReasonStreamOptions,
|
|
207
|
+
): Promise<ReasonStreamResult & { store?: FactStore }>;
|
|
208
|
+
export function reasonStream(
|
|
209
|
+
input: string | RdfJsReasonInput | EyelingAstBundle | N3SourceListInput,
|
|
210
|
+
opts?: ReasonStreamOptions,
|
|
211
|
+
): ReasonStreamResult;
|
|
212
|
+
export function reasonRdfJs(
|
|
213
|
+
input: string | RdfJsReasonInput | EyelingAstBundle | N3SourceListInput,
|
|
214
|
+
opts?: Omit<ReasonStreamOptions, 'rdfjs' | 'onDerived'>,
|
|
215
|
+
): AsyncIterable<import('@rdfjs/types').Quad>;
|
|
216
|
+
|
|
217
|
+
export const INFERENCE_FUSE_EXIT_CODE: 65;
|
|
218
|
+
export const rdfjs: import('@rdfjs/types').DataFactory<import('@rdfjs/types').Quad, import('@rdfjs/types').Quad> & { variable(value: string): import('@rdfjs/types').Variable };
|
|
219
|
+
export function createFactStore(options?: string | StoreOptions | null): Promise<FactStore>;
|
|
220
|
+
export function registerBuiltin(iri: string, handler: BuiltinHandler): BuiltinHandler;
|
|
221
|
+
export function unregisterBuiltin(iri: string): boolean;
|
|
222
|
+
export function registerBuiltinModule(mod: unknown, origin?: string): boolean;
|
|
223
|
+
export function loadBuiltinModule(specifier: string, options?: { resolveFrom?: string }): string;
|
|
224
|
+
export function listBuiltinIris(): string[];
|
|
225
|
+
|
|
226
|
+
export interface EyelingModule {
|
|
227
|
+
readonly version: string;
|
|
228
|
+
reason: typeof reason;
|
|
229
|
+
runAsync: typeof runAsync;
|
|
230
|
+
reasonStream: typeof reasonStream;
|
|
231
|
+
reasonRdfJs: typeof reasonRdfJs;
|
|
232
|
+
readonly INFERENCE_FUSE_EXIT_CODE: typeof INFERENCE_FUSE_EXIT_CODE;
|
|
233
|
+
rdfjs: typeof rdfjs;
|
|
234
|
+
createFactStore: typeof createFactStore;
|
|
235
|
+
MemoryFactStore: typeof MemoryFactStore;
|
|
236
|
+
PersistentFactStore: typeof PersistentFactStore;
|
|
237
|
+
registerBuiltin: typeof registerBuiltin;
|
|
238
|
+
unregisterBuiltin: typeof unregisterBuiltin;
|
|
239
|
+
registerBuiltinModule: typeof registerBuiltinModule;
|
|
240
|
+
loadBuiltinModule: typeof loadBuiltinModule;
|
|
241
|
+
listBuiltinIris: typeof listBuiltinIris;
|
|
286
242
|
}
|
|
243
|
+
|
|
244
|
+
declare const eyeling: EyelingModule;
|
|
245
|
+
export default eyeling;
|