How to Interrupt a Forked Fiber in Effect Typescript

how can I interrput another fiber? If I fork an effect, how can I interrupt it then from the fiber that called fork? I see Effect.interrupt only interrupts current fiber. I see there is interruptAsFork but a bit unsure how to use it, how do I get fiberId and is that the id of fiber to interrupt and the fiber that will do the interruption?
Was this page helpful?