This message was deleted.
# typescript
s
This message was deleted.
s
you can only access the resolved value inside the
.then
callback function, e.g.
Copy code
export const domainSecretGetValue = domainSecretGet.then(domainSecretGet => {
  console.log(domainSecretGet.properties.value)
  return domainSecretGet.properties.value
})