move types

This commit is contained in:
Peter Clement 2025-01-02 11:19:20 +00:00
parent 7c36d8dac5
commit 11e55bfbd7
3 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import { get } from "svelte/store"
import { BudiStore } from "../BudiStore"
import { PreviewDevice } from "@budibase/types"
type PreviewDevice = "desktop" | "tablet" | "mobile"
type PreviewEventHandler = (name: string, payload?: any) => void
type ComponentContext = Record<string, any>

View File

@ -1,3 +1,4 @@
export * from "./integration"
export * from "./automations"
export * from "./grid"
export * from "./preview"

View File

@ -0,0 +1 @@
export type PreviewDevice = "desktop" | "tablet" | "mobile"