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> + } }