10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
|
import { APIClient } from "@budibase/frontend-core"
|
||
|
import type { ActionTypes } from "./constants"
|
||
|
|
||
|
export interface SDK {
|
||
|
API: APIClient
|
||
|
styleable: unknown
|
||
|
Provider: unknown
|
||
|
ActionTypes: typeof ActionTypes
|
||
|
}
|