import type { DeepPartial } from '../types/helper'; /** * 网站相关配置 */ export declare const defaultSiteConfig: { /** * 网站名称,展示在顶部导航、登录页等位置 */ name: string; /** * 网站logo,展示在浏览器标签页、顶部导航、登录页等位置 */ logo: string; /** * 网站描述,用于meta描述、登录页描述等位置 */ description: string; }; export type SiteConfig = DeepPartial; export type RequiredSiteConfig = typeof defaultSiteConfig;