2020-11-18 20:18:18 +01:00
|
|
|
import * as API from "./api"
|
|
|
|
import { authStore, routeStore, screenStore } from "./store"
|
|
|
|
import { styleable, getAppId } from "./utils"
|
|
|
|
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-18 20:18:18 +01:00
|
|
|
}
|