update pos consumer

This commit is contained in:
2026-03-29 18:07:10 +03:30
parent 1e2f94261e
commit c10623bc3f
86 changed files with 2935 additions and 385 deletions
+2
View File
@@ -0,0 +1,2 @@
export * from './io';
export * from './types';
+4
View File
@@ -0,0 +1,4 @@
export interface IEnumResponse {
name: string;
value: string;
}
+3
View File
@@ -0,0 +1,3 @@
import { LOCAL_ENUMS } from '../constants';
export type TLocalEnum = keyof typeof LOCAL_ENUMS;