nav.ts — ui Source File
Architecture documentation for nav.ts, a typescript file in the ui codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 5aa29f3c_bc89_7b21_bef8_2795ce3d2870["nav.ts"] aae3c3f1_230a_9c11_a663_8bbc3f0ad054["icons"] 5aa29f3c_bc89_7b21_bef8_2795ce3d2870 --> aae3c3f1_230a_9c11_a663_8bbc3f0ad054 style 5aa29f3c_bc89_7b21_bef8_2795ce3d2870 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { Icons } from "@/components/icons"
export interface NavItem {
title: string
href?: string
disabled?: boolean
external?: boolean
icon?: keyof typeof Icons
label?: string
}
export interface NavItemWithChildren extends NavItem {
items: NavItemWithChildren[]
}
export interface MainNavItem extends NavItem {}
export interface SidebarNavItem extends NavItemWithChildren {}
Dependencies
- icons
Source
Frequently Asked Questions
What does nav.ts do?
nav.ts is a source file in the ui codebase, written in typescript.
What does nav.ts depend on?
nav.ts imports 1 module(s): icons.
Where is nav.ts in the architecture?
nav.ts is located at deprecated/www/types/nav.ts (directory: deprecated/www/types).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free