2025-01-14 11:46:58 +01:00
|
|
|
import { APIClient } from "@budibase/frontend-core"
|
|
|
|
import type { ActionTypes } from "./constants"
|
2025-01-14 11:57:20 +01:00
|
|
|
import { Readable } from "svelte/store"
|
2025-01-14 11:46:58 +01:00
|
|
|
|
|
|
|
export interface SDK {
|
|
|
|
API: APIClient
|
|
|
|
styleable: unknown
|
|
|
|
Provider: unknown
|
|
|
|
ActionTypes: typeof ActionTypes
|
|
|
|
}
|
2025-01-14 11:57:20 +01:00
|
|
|
|
|
|
|
export type Component = Readable<{
|
|
|
|
id: string
|
|
|
|
}>
|