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

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]
}