//! Copyright (C) Call of Nil contributors //! SPDX-License-Identifier: AGPL-3.0-only import { app_AcademySettings } from './app_AcademySettings'; import { app_AppearanceSettings } from './app_AppearanceSettings'; import { app_AuthSettings } from './app_AuthSettings'; import { app_GeneralSettings } from './app_GeneralSettings'; import { app_PrefectureSettings } from './app_PrefectureSettings'; import { app_StableSettings } from './app_StableSettings'; import { app_WorkshopSettings } from './app_WorkshopSettings'; export type app_Settings = { academy: app_AcademySettings; appearance: app_AppearanceSettings; auth: app_AuthSettings; general: app_GeneralSettings; prefecture: app_PrefectureSettings; stable: app_StableSettings; workshop: app_WorkshopSettings; };