export interface UserNavItem {
    key: string;
    hash: string;
    icon: string;
    label: string;
    title: string;
    subtitle: string;
    group: "account" | "content";
    accent: "cyan" | "emerald" | "violet" | "amber" | "rose" | "blue" | "slate";
}

export interface UserRouteState extends UserNavItem {
    name: string;
    params: Record<string, string>;
    query: Record<string, string>;
}
评论加载中...