Skip to content

Commit 7b35545

Browse files
authored
Merge pull request #25 from solid/addTypes
add missing types
2 parents c8c8847 + 108ab5b commit 7b35545

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

src/index.ts

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,26 @@ interface ConnectedStore extends Store {
2222
export interface LiveStore extends ConnectedStore {
2323
updater: UpdateManager;
2424
/**
25-
* HACK: Something is wrong with the types in rdflib
26-
* Go back and figure out what's wrong with the types
25+
* HACK: waiting for d.ts in rdflib
26+
* https://github.com/linkeddata/rdflib.js/pull/513
2727
*/
28+
add: any;
2829
any: any;
30+
anyJS: any;
31+
anyValue: any;
32+
bottomTypeURIs: any;
2933
each: any;
34+
findSuperClassesNT: any;
35+
findTypeURIs: any;
36+
fromNT: any;
3037
holds: any;
31-
sym: any;
32-
add: any;
33-
statementsMatching: any;
38+
query: any;
3439
slice: any;
35-
remove: any;
3640
statements: any;
41+
statementsMatching: any;
42+
sym: any;
43+
remove: any;
44+
the: any;
3745
}
3846

3947
export interface SolidNamespace {

0 commit comments

Comments
 (0)