This commit is contained in:
Adria Navarro 2025-01-14 11:46:58 +01:00
parent 9f5f0d468e
commit 4afaa85b84
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import { APIClient } from "@budibase/frontend-core"
import type { ActionTypes } from "./constants"
export interface SDK {
API: APIClient
styleable: unknown
Provider: unknown
ActionTypes: typeof ActionTypes
}