1
0
Fork 0
mirror of synced 2024-08-21 04:51:42 +12:00
budibase/packages/client/src/sdk.js
2021-03-01 12:59:27 +01:00

27 lines
549 B
JavaScript

import * as API from "./api"
import {
authStore,
notificationStore,
routeStore,
screenStore,
builderStore,
} 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,
}