UNPKG

stackpress

Version:

Incept is a content management framework.

19 lines (18 loc) 432 B
import { LanguageConfig } from '../language/types.js'; import { ViewConfig, BrandConfig } from '../view/types.js'; export type AdminConfigProps = { language: LanguageConfig; view: ViewConfig; brand: BrandConfig; admin: AdminConfig; }; export type AdminConfig = { name?: string; base?: string; menu?: { name: string; icon?: string; path: string; match: string; }[]; };