function wrapElementsMap>(arg: T) { return arg; } const elementsToActions = wrapElementsMap({ btnCalculate: 'calculate', btnCreateKP: 'create-kp', btnCreateKPMini: 'create-kp', }); export default elementsToActions; export type Elements = keyof typeof elementsToActions;