From 8018f5f25be1dc5d11eeb7f86148a63a2b18c4c2 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Mon, 17 Feb 2025 19:32:16 +0100 Subject: [PATCH] Fix types --- packages/types/src/ui/components/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/types/src/ui/components/index.ts b/packages/types/src/ui/components/index.ts index 60e22f6539..455763abda 100644 --- a/packages/types/src/ui/components/index.ts +++ b/packages/types/src/ui/components/index.ts @@ -63,6 +63,9 @@ export interface ComponentContext { type: ComponentContextType scope: ComponentContextScopes actions: any[] + url?: Record + query?: string + state?: Record } export type ComponentContextType = "context" | "action"