From 386d654f6d9dac257f0a45c16c1515e7ff3d751f Mon Sep 17 00:00:00 2001 From: BluJ Date: Tue, 22 Nov 2022 12:51:55 -0700 Subject: [PATCH] chore: Make the return type as any --- types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types.ts b/types.ts index 297dced..ded9656 100644 --- a/types.ts +++ b/types.ts @@ -19,7 +19,7 @@ export namespace ExpectedExports { [id: string]: ( effects: Effects, dateMs: number, - ) => Promise>; + ) => Promise>; }; 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>; + export type main = (effects: Effects) => Promise>; } /** Used to reach out from the pure js runtime */