This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/src/storage/idb/store-index.js

11 lines
193 B
JavaScript
Raw Normal View History

2019-02-05 04:51:50 +05:30
import QueryTarget from "./query-target.js";
2019-02-07 03:34:39 +05:30
export default class StoreIndex extends QueryTarget {
2019-02-05 04:51:50 +05:30
constructor(index) {
this._index = index;
}
_queryTarget() {
return this._index;
}
}