Adding and Inspecting Tags in Effects with Effect Typescript Library
I would like to have some effects and tag them like
blahHandler.pipe( ..., generalRelease,)
blahHandler.pipe( ..., generalRelease,)
and then when handling inspect a tag that the functions attach. I would like to require that one of a set of functions is called and be able to inspect later which was called. I thought about branding the effect but is there a way to add an arbitary tag that could be inspected. Should I be using a dependency ala.
Scope
Scope
instead? In that case, how would I ensure that the function gets called?