15 lines
448 B
JavaScript
15 lines
448 B
JavaScript
import {Store, Index} from "./Classes/Store";
|
|
|
|
|
|
export const IDB_stores = {
|
|
ProfileStore: new Store("profile", false, "slug", [
|
|
new Index("isActive", false)
|
|
]),
|
|
RegionStore: new Store("region", false, "slug"),
|
|
FilterStore: new Store("filter", false, ["region", "slug"], [
|
|
new Index("region", false)
|
|
]),
|
|
NodeStore: new Store("node", false, ["profile", "domId"], [
|
|
new Index("region", false)
|
|
]),
|
|
}; |