This commit is contained in:
github-actions[bot]
2026-01-18 03:14:49 +00:00
commit f3ee114735
336 changed files with 42224 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import type { IconName } from '@fortawesome/fontawesome-svg-core';
import type React from 'react';
import type { Routes } from '@pezkuwi/apps-routing/types';
export interface ItemRoute {
Modal?: React.ComponentType<any>;
href?: string;
icon: IconName;
name: string;
text: string;
useCounter?: () => number | string | null;
}
export interface Group {
name: string;
routes: Routes;
}
export type Groups = Record<string, Group>;