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