This commit is contained in:
ct
2025-07-15 03:27:39 +08:00
parent eb207b98d9
commit 852346ee3b
13 changed files with 44 additions and 61 deletions

View File

@@ -1,10 +1,6 @@
import { LucideIcon } from 'lucide-react';
import type { Config } from 'ziggy-js';
export interface Auth {
user: User;
user_is_admin: boolean;
}
export interface BreadcrumbItem {
title: string;
@@ -24,7 +20,6 @@ export interface NavItem {
}
export interface SharedData {
auth: Auth;
ziggy: Config & { location: string };
[key: string]: unknown;
}