Fix types

This commit is contained in:
Adria Navarro 2025-02-17 19:32:16 +01:00
parent dbb783c13f
commit 8018f5f25b
1 changed files with 3 additions and 0 deletions

View File

@ -63,6 +63,9 @@ export interface ComponentContext {
type: ComponentContextType
scope: ComponentContextScopes
actions: any[]
url?: Record<string, any>
query?: string
state?: Record<string, any>
}
export type ComponentContextType = "context" | "action"