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