extend migration type to take in optional params

This commit is contained in:
Lucy Cifferello
2022-07-15 19:14:58 -06:00
parent c497e0bbbb
commit 93d1ba70c2

View File

@@ -24,6 +24,7 @@ export namespace ExpectedExports {
export type migration = (
effects: Effects,
version: string,
options?: any,
) => Promise<ResultType<MigrationRes>>;
export type action = {
[id: string]: (