2020-11-18 20:18:18 +01:00
|
|
|
import * as API from "./api"
|
2021-01-22 12:44:43 +01:00
|
|
|
import {
|
|
|
|
authStore,
|
|
|
|
notificationStore,
|
|
|
|
routeStore,
|
|
|
|
screenStore,
|
|
|
|
bindingStore,
|
|
|
|
} from "./store"
|
2020-11-25 10:50:51 +01:00
|
|
|
import { styleable } from "./utils/styleable"
|
2021-01-06 11:14:05 +01:00
|
|
|
import { linkable } from "./utils/linkable"
|
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,
|
2021-01-25 08:43:28 +01:00
|
|
|
notifications: notificationStore,
|
2020-11-18 20:18:18 +01:00
|
|
|
routeStore,
|
|
|
|
screenStore,
|
|
|
|
styleable,
|
|
|
|
linkable,
|
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
|
|
|
}
|