File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -120,13 +120,19 @@ export {
120
120
export { termValue } from './utils/termValue'
121
121
122
122
export class ConnectedStore extends Store {
123
+
124
+ fetcher : Fetcher ;
125
+
123
126
constructor ( features ) {
124
127
super ( features )
125
128
this . fetcher = new Fetcher ( this , { } )
126
129
}
127
130
}
128
131
129
132
export class LiveStore extends ConnectedStore {
133
+
134
+ updater : UpdateManager ;
135
+
130
136
constructor ( features ) {
131
137
super ( features )
132
138
this . updater = new UpdateManager ( this )
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ export default class RDFParser {
198
198
199
199
/**
200
200
* Build our initial scope frame and parse the DOM into triples
201
- * @param {DOMTree } document The DOM to parse
201
+ * @param {HTMLDocument } document The DOM to parse
202
202
* @param {String } base The base URL to use
203
203
* @param {Object } why The context to which this resource belongs
204
204
*/
You can’t perform that action at this time.
0 commit comments