feat: improve bridge and exported types

This commit is contained in:
Baptiste Grob
2020-11-09 17:01:24 +01:00
parent f3b45035c6
commit 016b73028d
6 changed files with 68 additions and 49 deletions

View File

@@ -0,0 +1,6 @@
import { Bridge } from "./services/bridge";
export type StartApplication = (
defaultSyncServerHost: string,
bridge: Bridge
) => Promise<void>;