28 lines
535 B
JavaScript
28 lines
535 B
JavaScript
import * as API from "./api"
|
|
import {
|
|
authStore,
|
|
notificationStore,
|
|
routeStore,
|
|
screenStore,
|
|
builderStore,
|
|
} from "./store"
|
|
import { styleable } from "./utils/styleable"
|
|
import { linkable } from "./utils/linkable"
|
|
import { getAction } from "./utils/getAction"
|
|
import Provider from "./components/Provider.svelte"
|
|
import { ActionTypes } from "./constants"
|
|
|
|
export default {
|
|
API,
|
|
authStore,
|
|
notificationStore,
|
|
routeStore,
|
|
screenStore,
|
|
builderStore,
|
|
styleable,
|
|
linkable,
|
|
getAction,
|
|
Provider,
|
|
ActionTypes,
|
|
}
|