Revert Component store to readable
This commit is contained in:
parent
84dbcb0f69
commit
ed35acc01a
|
@ -1,6 +1,6 @@
|
||||||
import { APIClient } from "@budibase/frontend-core"
|
import { APIClient } from "@budibase/frontend-core"
|
||||||
import type { ActionTypes } from "./constants"
|
import type { ActionTypes } from "./constants"
|
||||||
import { Readable, Writable } from "svelte/store"
|
import { Readable } from "svelte/store"
|
||||||
|
|
||||||
export interface SDK {
|
export interface SDK {
|
||||||
API: APIClient
|
API: APIClient
|
||||||
|
@ -14,7 +14,7 @@ export interface SDK {
|
||||||
}>
|
}>
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Component = Writable<{
|
export type Component = Readable<{
|
||||||
id: string
|
id: string
|
||||||
styles: any
|
styles: any
|
||||||
errorState: boolean
|
errorState: boolean
|
||||||
|
|
Loading…
Reference in New Issue