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,
|
2021-01-26 10:48:41 +01:00
|
|
|
builderStore,
|
2021-01-22 12:44:43 +01:00
|
|
|
} 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"
|
2021-06-03 11:10:25 +02:00
|
|
|
import { getAction } from "./utils/getAction"
|
2021-02-01 19:51:22 +01:00
|
|
|
import Provider from "./components/Provider.svelte"
|
|
|
|
import { ActionTypes } from "./constants"
|
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,
|
2021-01-26 10:48:41 +01:00
|
|
|
builderStore,
|
2020-11-18 20:18:18 +01:00
|
|
|
styleable,
|
|
|
|
linkable,
|
2021-06-03 11:10:25 +02:00
|
|
|
getAction,
|
2021-02-01 19:51:22 +01:00
|
|
|
Provider,
|
|
|
|
ActionTypes,
|
2020-11-18 20:18:18 +01:00
|
|
|
}
|