From 6b40e2b805cf10856b9c913fa49f8086fc0b8127 Mon Sep 17 00:00:00 2001 From: Adrien Poly Date: Mon, 14 Jun 2021 19:30:02 +0200 Subject: [PATCH] correct the typing of ActionEvent --- packages/@stimulus/core/src/action_event.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@stimulus/core/src/action_event.ts b/packages/@stimulus/core/src/action_event.ts index 020c401d..8913ad42 100644 --- a/packages/@stimulus/core/src/action_event.ts +++ b/packages/@stimulus/core/src/action_event.ts @@ -1,3 +1,3 @@ export interface ActionEvent extends Event { - params: object + params: { [key: string]: any } }