const getValue = <T extends Record<string, unknown>>(obj: T, key: string): unknown => {
	obj(key)
}

getValue({name: 'Vasya'}, 'unknown');

Назад