feat: enhance POS module with dynamic routing, improved state management, and new search functionality

This commit is contained in:
2025-12-26 16:47:47 +03:30
parent abfb2f3479
commit c6efda319c
20 changed files with 264 additions and 109 deletions
+1
View File
@@ -2,5 +2,6 @@ export * from './maybe.model';
export * from './namedRoutes.model';
export * from './navigation.model';
export * from './route-utils.model';
export * from './summary';
export * from './tag';
export * from './user.model';
+4
View File
@@ -0,0 +1,4 @@
export default interface ISummary {
id: number;
name: string;
}