UNPKG

magner

Version:

Universal admin panel magnetic to any backend

13 lines (12 loc) 532 B
import type { DevelopmentController } from '../../controllers/development'; import type { ManifestController } from '../../controllers/manifest'; import type { RouterController } from '../../controllers/router'; import type { TranslationController } from '../../controllers/i18n'; import type { AppStoreType } from '../../types'; export interface ProjectConfig { manifest: ManifestController; routing: RouterController; i18n: TranslationController; development: DevelopmentController; appStore?: AppStoreType; }