From 2e8dd718e1a8710d658acda32a06c25c2294ac36 Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Sat, 15 Jun 2024 23:04:29 +0200 Subject: [PATCH] fix(scripting_api)!: use correct ActionHandler signature --- lib/src/core/scripting_api/exposed_thing.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/core/scripting_api/exposed_thing.dart b/lib/src/core/scripting_api/exposed_thing.dart index cf6048ac..3aff4b92 100644 --- a/lib/src/core/scripting_api/exposed_thing.dart +++ b/lib/src/core/scripting_api/exposed_thing.dart @@ -27,7 +27,7 @@ typedef PropertyWriteHandler = Future Function( /// A function that is called when an external request for invoking an Action /// is received and defines what to do with such requests. -typedef ActionHandler = Future Function( +typedef ActionHandler = Future Function( InteractionOutput params, { int? formIndex, Map? uriVariables,