mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-08 21:58:05 -05:00
10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
export interface NavItem {
|
|
title: string
|
|
href: string
|
|
disabled?: boolean
|
|
external?: boolean
|
|
onlyFooter?: boolean
|
|
onlyHeader?: boolean
|
|
onlyMobile?: boolean
|
|
}
|