We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c64ead7 commit 2a7c92bCopy full SHA for 2a7c92b
components.json
resources/js/types/index.d.ts
@@ -1,33 +1,14 @@
1
-import { LucideIcon } from 'lucide-react';
2
import type { Config } from 'ziggy-js';
3
4
export interface Auth {
5
user: User;
6
}
7
8
-export interface BreadcrumbItem {
9
- title: string;
10
- href: string;
11
-}
12
-
13
-export interface NavGroup {
14
15
- items: NavItem[];
16
17
18
-export interface NavItem {
19
20
21
- icon?: LucideIcon | null;
22
- isActive?: boolean;
23
24
25
export interface SharedData {
26
name: string;
27
quote: { message: string; author: string };
28
auth: Auth;
29
ziggy: Config & { location: string };
30
- sidebarOpen: boolean;
31
[key: string]: unknown;
32
33
0 commit comments