Preview:```ts
function PrivateKs(strS: string[]): symbol[] {
return strS.map(str => Symbol(str))
}
// I know PrcClass is symbol, not symbol | undefined
// could cast here with [symbol] but would prefer a generalized solution inside the function
const [PrcClass] = PrivateKs(["PrcClass"])
...```
You can choose specific lines to embed by selecting them before copying the link.