Accessing `fiberId` Property in Effect Typescript

Why can't I access the id property on a fiberId?
Logger.make((_) => {
  console.log(_.fiberId.id)
})

It throws an error saying I can't do it, but when I // @ts-ignore the above that error, the code runs fine. I don't like using // @ts-ignore, so what should I be doing instead? https://effect.website/play#728de4252cf1
Was this page helpful?