mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-06-14 19:11:05 +00:00
Updates
This commit is contained in:
Vendored
+16
@@ -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>;
|
||||
Reference in New Issue
Block a user