Files
standardnotes-app-web/app/assets/javascripts/startApplication.ts
Karol Sójko 8dde06b93b feat: add alternative server for purposes of switching to API v1 (#571)
* feat: add alternative server for purposes of switching to API v1

* fix: naming of next version sync server host variable
2021-06-07 15:19:26 +02:00

8 lines
185 B
TypeScript

import { Bridge } from "./services/bridge";
export type StartApplication = (
defaultSyncServerHost: string,
bridge: Bridge,
nextVersionSyncServerHost: string
) => Promise<void>;