chore: move environments firebase things to hoppscotch-web (#2939)
This commit is contained in:
3
packages/hoppscotch-common/src/platform/environments.ts
Normal file
3
packages/hoppscotch-common/src/platform/environments.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export type EnvironmentsPlatformDef = {
|
||||
initEnvironmentsSync: () => void
|
||||
}
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user