budibase/packages/client/src/sdk.ts

10 lines
217 B
TypeScript
Raw Normal View History

2025-01-14 11:46:58 +01:00
import { APIClient } from "@budibase/frontend-core"
import type { ActionTypes } from "./constants"
export interface SDK {
API: APIClient
styleable: unknown
Provider: unknown
ActionTypes: typeof ActionTypes
}