mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-11 03:49:07 +00:00
7 lines
118 B
TypeScript
7 lines
118 B
TypeScript
export default interface INavigationIcon {
|
|
title: string;
|
|
route: string;
|
|
icon: any;
|
|
requiresAuth?: boolean;
|
|
}
|