There is a type that needs to be created in order to have custom strings inside. Something like:
type Names = { customName: "name1" | "name2" }
Since, what is planned is to have the "nameX" called from .env variables, I'd like to be able to do something like this:
type Names = {customName: process.env.name1 | process.env.name2 }
Instead, as a result, the process. is not recognized Cannot find namespace 'process'.