1
0
Fork 0
mirror of synced 2024-09-12 15:37:31 +12:00
budibase/packages/client/src/sdk.js

28 lines
549 B
JavaScript
Raw Normal View History

import * as API from "./api"
2021-01-23 00:44:43 +13:00
import {
authStore,
notificationStore,
routeStore,
screenStore,
builderStore,
2021-01-23 00:44:43 +13:00
} from "./store"
import { styleable } from "./utils/styleable"
import transition from "./utils/transition"
import { linkable } from "./utils/linkable"
import Provider from "./components/Provider.svelte"
import { ActionTypes } from "./constants"
export default {
API,
authStore,
notifications: notificationStore,
routeStore,
screenStore,
builderStore,
styleable,
transition,
linkable,
Provider,
ActionTypes,
}