Compare commits

..

No commits in common. "f0bad1ed7f74d4e2ef2144df841665f77adb1d1c" and "e7d933e6e9c41ee1b9c3fb3ac10f712d1866f9af" have entirely different histories.

4 changed files with 2 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@teacinema/common",
"version": "1.0.1",
"version": "1.0.0",
"description": "Common library for TeaCinema microservices",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

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

View File

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

View File

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