Change errorState to boolean

This commit is contained in:
Adria Navarro 2025-01-17 11:51:48 +01:00
parent 8cf7375202
commit 84dbcb0f69
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export interface SDK {
export type Component = Writable<{
id: string
styles: any
errorState: string
errorState: boolean
}>
export type Context = Readable<any>