mySignal = signal(0);
this.mySignal.update(val => val + 1);
effect(() => {
this.mySignal();
console.log('has been triggered');
});
this is the easiest way could figure out when dealing with a similar issue. In my case i only needed a trigger for an effect without needing the value.