From 6ccaed9ce1783caff1b33e4f7aa390215ff8f45f Mon Sep 17 00:00:00 2001 From: J M Date: Fri, 1 Jul 2022 13:07:01 -0600 Subject: [PATCH] feat: add in the actions --- types.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/types.ts b/types.ts index 0e8546f..226dfd5 100644 --- a/types.ts +++ b/types.ts @@ -25,6 +25,12 @@ export namespace ExpectedExports { effects: Effects, version: string, ) => Promise>; + export type action = { + [id: string]: ( + effects: Effects, + config?: Config + ) => Promise> + } }