1
0
Fork 0
mirror of synced 2024-09-18 18:28:33 +12:00
budibase/packages/client/src/sdk.js

18 lines
463 B
JavaScript
Raw Normal View History

import * as API from "./api"
2021-01-22 22:42:15 +13:00
import { authStore, notificationStore, routeStore, screenStore, bindingStore } from "./store"
import { styleable } from "./utils/styleable"
import { linkable } from "./utils/linkable"
import DataProvider from "./components/DataProvider.svelte"
export default {
API,
authStore,
2021-01-22 22:42:15 +13:00
notificationStore,
routeStore,
screenStore,
styleable,
linkable,
DataProvider,
setBindableValue: bindingStore.actions.setBindableValue,
}