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