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