Fix types

This commit is contained in:
Adria Navarro 2025-03-10 10:57:43 +01:00
parent 5808b33ef9
commit 22d80ede9f
1 changed files with 4 additions and 3 deletions

View File

@ -1,13 +1,14 @@
<script lang="ts">
import { getContext, onDestroy } from "svelte"
import { Readable, writable } from "svelte/store"
import type { Readable } from "svelte/store"
import { writable } from "svelte/store"
import { Icon } from "@budibase/bbui"
import { memo } from "@budibase/frontend-core"
import Placeholder from "../Placeholder.svelte"
import InnerForm from "./InnerForm.svelte"
import type { FieldApi, FieldState } from "."
import { FieldSchema, FieldType } from "@budibase/types"
import { FormField } from "@/index"
import type { FieldSchema, FieldType } from "@budibase/types"
import type { FormField } from "@/index"
export let label: string | undefined = undefined
export let field: string | undefined = undefined