chatbot-template/types/nav.ts
Jared Palmer a04776256d init
2023-05-19 12:33:56 -04:00

6 lines
107 B
TypeScript

export interface NavItem {
title: string;
href?: string;
disabled?: boolean;
external?: boolean;
}