Merge pull request #2 from Start9Labs/feat/extend-migration-type

extend migration type to take in optional params
This commit is contained in:
J M
2022-07-15 19:16:16 -06:00
committed by GitHub

View File

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