chore: merge hoppscotch/hoppscotch/staging into main

This commit is contained in:
Andrew Bastin
2023-03-02 18:55:55 +05:30
64 changed files with 2619 additions and 938 deletions

View File

@@ -0,0 +1,3 @@
export type EnvironmentsPlatformDef = {
initEnvironmentsSync: () => void
}

View File

@@ -1,9 +1,13 @@
import { AuthPlatformDef } from "./auth"
import { UIPlatformDef } from "./ui"
import { EnvironmentsPlatformDef } from "./environments"
export type PlatformDef = {
ui?: UIPlatformDef
auth: AuthPlatformDef
sync: {
environments: EnvironmentsPlatformDef
}
}
export let platform: PlatformDef