chore: Make the return type as any

This commit is contained in:
BluJ
2022-11-22 12:51:55 -07:00
parent b1be4948cd
commit 386d654f6d

View File

@@ -19,7 +19,7 @@ export namespace ExpectedExports {
[id: string]: (
effects: Effects,
dateMs: number,
) => Promise<ResultType<null | void>>;
) => Promise<ResultType<unknown>>;
};
export type migration = (
effects: Effects,
@@ -37,7 +37,7 @@ export namespace ExpectedExports {
* This is the entrypoint for the main container. Used to start up something like the service that the
* package represents, like running a bitcoind in a bitcoind-wrapper.
*/
export type main = (effects: Effects) => Promise<ResultType<null | void>>;
export type main = (effects: Effects) => Promise<ResultType<unknown>>;
}
/** Used to reach out from the pure js runtime */