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-09-01 12:41:48 +02:00
|
|
|
} from "stores"
|
|
|
|
import { styleable } from "utils/styleable"
|
|
|
|
import { linkable } from "utils/linkable"
|
|
|
|
import { getAction } from "utils/getAction"
|
|
|
|
import Provider from "components/context/Provider.svelte"
|
|
|
|
import { ActionTypes } from "constants"
|
2020-11-18 20:18:18 +01:00
|
|
|
|
|
|
|
export default {
|
|
|
|
API,
|
|
|
|
authStore,
|
2021-07-30 15:01:01 +02:00
|
|
|
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
|
|
|
}
|