Files
common/lib/utils/conver-enum.ts
Дмитрий ecf1704eb1
All checks were successful
Publish / Publish Job (push) Successful in 43s
add: add utils from conver enums
2026-04-02 20:31:45 +03:00

7 lines
123 B
TypeScript

export function convertEnum<T extends object>(
target: T,
value: string
): T[keyof T] {
return (target as any)[value]
}