2020-11-18 20:18:18 +01:00
|
|
|
import * as API from "./api"
|
2020-11-24 12:02:10 +01:00
|
|
|
import { authStore, routeStore, screenStore, bindingStore } from "./store"
|
2020-11-25 10:50:51 +01:00
|
|
|
import { styleable } from "./utils/styleable"
|
|
|
|
import { getAppId } from "./utils/getAppId"
|
2020-11-18 20:18:18 +01:00
|
|
|
import { link as linkable } from "svelte-spa-router"
|
2020-11-20 10:50:10 +01:00
|
|
|
import DataProvider from "./components/DataProvider.svelte"
|
2020-11-18 20:18:18 +01:00
|
|
|
|
|
|
|
export default {
|
|
|
|
API,
|
|
|
|
authStore,
|
|
|
|
routeStore,
|
|
|
|
screenStore,
|
|
|
|
styleable,
|
|
|
|
linkable,
|
|
|
|
getAppId,
|
2020-11-20 10:50:10 +01:00
|
|
|
DataProvider,
|
2020-11-24 12:02:10 +01:00
|
|
|
setBindableValue: bindingStore.actions.setBindableValue,
|
2020-11-18 20:18:18 +01:00
|
|
|
}
|