add: add utils from conver enums
All checks were successful
Publish / Publish Job (push) Successful in 43s

This commit is contained in:
Дмитрий
2026-04-02 20:31:45 +03:00
parent 329711e499
commit ecf1704eb1
4 changed files with 10 additions and 2 deletions

View File

@@ -1 +1,2 @@
export * from "./enums";
export * from './enums'
export * from './utils'

6
lib/utils/conver-enum.ts Normal file
View File

@@ -0,0 +1,6 @@
export function convertEnum<T extends object>(
target: T,
value: string
): T[keyof T] {
return (target as any)[value]
}

1
lib/utils/index.ts Normal file
View File

@@ -0,0 +1 @@
export * from './conver-enum'

View File

@@ -1,6 +1,6 @@
{
"name": "@lendry-erp/common",
"version": "1.0.1",
"version": "1.0.2",
"description": "Core shared components for Lendry-ERP microservice ecosystem",
"main": "dist/index.js",
"type": "dist/index.d.ts",