chore: move settings firebase things to platform (#2953)

This commit is contained in:
Akash K
2023-03-29 23:59:28 +05:30
committed by GitHub
parent 39afeab5f8
commit a66a2f5645
5 changed files with 116 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ import { AuthPlatformDef } from "./auth"
import { UIPlatformDef } from "./ui"
import { EnvironmentsPlatformDef } from "./environments"
import { CollectionsPlatformDef } from "./collections"
import { SettingsPlatformDef } from "./settings"
export type PlatformDef = {
ui?: UIPlatformDef
@@ -9,6 +10,7 @@ export type PlatformDef = {
sync: {
environments: EnvironmentsPlatformDef
collections: CollectionsPlatformDef
settings: SettingsPlatformDef
}
}