chore: merge hoppscotch/staging into self-hosted/main
This commit is contained in:
3
packages/hoppscotch-common/src/platform/history.ts
Normal file
3
packages/hoppscotch-common/src/platform/history.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export type HistoryPlatformDef = {
|
||||
initHistorySync: () => void
|
||||
}
|
||||
@@ -2,6 +2,8 @@ import { AuthPlatformDef } from "./auth"
|
||||
import { UIPlatformDef } from "./ui"
|
||||
import { EnvironmentsPlatformDef } from "./environments"
|
||||
import { CollectionsPlatformDef } from "./collections"
|
||||
import { SettingsPlatformDef } from "./settings"
|
||||
import { HistoryPlatformDef } from "./history"
|
||||
|
||||
export type PlatformDef = {
|
||||
ui?: UIPlatformDef
|
||||
@@ -9,6 +11,8 @@ export type PlatformDef = {
|
||||
sync: {
|
||||
environments: EnvironmentsPlatformDef
|
||||
collections: CollectionsPlatformDef
|
||||
settings: SettingsPlatformDef
|
||||
history: HistoryPlatformDef
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
3
packages/hoppscotch-common/src/platform/settings.ts
Normal file
3
packages/hoppscotch-common/src/platform/settings.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export type SettingsPlatformDef = {
|
||||
initSettingsSync: () => void
|
||||
}
|
||||
Reference in New Issue
Block a user