mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-05-13 17:45:43 +00:00
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
export default interface INavigationIcon {
|
|
title: string;
|
|
route: string;
|
|
icon: any; // eslint-disable-line @typescript-eslint/no-explicit-any
|
|
requiresAuth?: boolean;
|
|
useStroke?: boolean;
|
|
}
|