File tree Expand file tree Collapse file tree 2 files changed +0
-36
lines changed Expand file tree Collapse file tree 2 files changed +0
-36
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- import type { LucideIcon } from 'lucide-vue-next' ;
2
1
import type { Config } from 'ziggy-js' ;
3
2
4
3
export interface Auth {
5
4
user : User ;
6
5
}
7
6
8
- export interface BreadcrumbItem {
9
- title : string ;
10
- href : string ;
11
- }
12
-
13
- export interface NavItem {
14
- title : string ;
15
- href : string ;
16
- icon ?: LucideIcon ;
17
- isActive ?: boolean ;
18
- }
19
-
20
7
export type AppPageProps < T extends Record < string , unknown > = Record < string , unknown > > = T & {
21
8
name : string ;
22
9
quote : { message : string ; author : string } ;
23
10
auth : Auth ;
24
11
ziggy : Config & { location : string } ;
25
- sidebarOpen : boolean ;
26
12
} ;
27
13
28
14
export interface User {
@@ -34,5 +20,3 @@ export interface User {
34
20
created_at : string ;
35
21
updated_at : string ;
36
22
}
37
-
38
- export type BreadcrumbItemType = BreadcrumbItem ;
You can’t perform that action at this time.
0 commit comments