7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
import { Bridge } from "./services/bridge";
|
|
|
|
export type StartApplication = (
|
|
defaultSyncServerHost: string,
|
|
bridge: Bridge
|
|
) => Promise<void>;
|