I have seen Typescript code that looks like this:
const { PUBLIC_JWKS } = event.secrets.PUBLIC_JWKS;
and I am having trouble understanding what this means.
My first question is: Is this even a Typescript thing, or a holdover from Javascript?
Second: If it is a Typescript thing, what, exactly does it mean? It seems string to have an object be a const
value.