export function getKeyByValue( obj: T, value: T[V], ): keyof T | undefined { return (Object.keys(obj) as Array).find((key) => obj[key] === value); }