mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-10 06:38:03 -05:00
8 lines
125 B
TypeScript
8 lines
125 B
TypeScript
export interface NavItem {
|
|
title: string
|
|
href: string
|
|
disabled?: boolean
|
|
external?: boolean
|
|
onlyFooter?: boolean
|
|
}
|