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

32 lines
643 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,
uploadStore,
} from "stores"
import { styleable } from "utils/styleable"
import { linkable } from "utils/linkable"
import { getAction } from "utils/getAction"
import { fetchDatasourceSchema } from "utils/schema.js"
import Provider from "components/context/Provider.svelte"
import { ActionTypes } from "constants"
export default {
API,
authStore,
notificationStore,
routeStore,
screenStore,
builderStore,
uploadStore,
styleable,
linkable,
getAction,
fetchDatasourceSchema,
Provider,
ActionTypes,
}