chatbot-template/types/nav.ts

7 lines
107 B
TypeScript
Raw Normal View History

2023-05-19 12:33:56 -04:00
export interface NavItem {
title: string;
href?: string;
disabled?: boolean;
external?: boolean;
}