I am trying to use process.env in value of a key in ts. But I am not able to access process properties and its showing "Cannot find namespace 'prcoess'".
const MAIL_SETTINGS: {
service: 'gmail',
auth: {
user: prcoess.env.MAIL_EMAIL,
pass: prcoess.env.MAIL_PASSWORD,
},
}
i tried to make process as a global variable and used it in value but didnt work.