chore: move environments firebase things to hoppscotch-web (#2939)

This commit is contained in:
Akash K
2023-03-02 18:50:13 +05:30
committed by GitHub
parent f2de0dc673
commit 3fa4052538
5 changed files with 30 additions and 12 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