feat: add in the actions

This commit is contained in:
J M
2022-07-01 13:07:01 -06:00
parent ac61c827b1
commit 6ccaed9ce1

View File

@@ -25,6 +25,12 @@ export namespace ExpectedExports {
effects: Effects,
version: string,
) => Promise<ResultType<MigrationRes>>;
export type action = {
[id: string]: (
effects: Effects,
config?: Config
) => Promise<ResultType<ActionResult>>
}
}