Hey, I have 2 questions regarding the new signals. I'm trying to simulate a slow call to an API which returns an observable.
Is it possible to get a WritableSignal<T> from the toSignal() function, instead of a signal<T>?
I want to fetch a user object and then mutate said object.
Also, on line 27, should typescript not infer that this.user() is not undefined with the type guard on line 23?
I know in this example I can pass inn an initial value to user but in reality this probably would not be feasible.