export const getKeyValue = (obj: T, key: K): T[K] => obj[key] export const setKeyValue = (obj: T, key: K, value: any): T[K] => (obj[key] = value)