Bri
Bri
I suppose if you're building with explicitly TypeScript in mind the ideal implementation is something like this: ```ts class Signal { private _value: T; constructor(value: T) { this._value = value;...
> Okay, but it seems extremely nearsighted to ship a new CFA feature that is going to immediately run into another feature request before it's considered useful. Bringing up the...
As an interesting anecdote, Svelte's old style of stores basically handled this problem via the magic `$store` syntax: ```svelte import { writable } from 'svelte/store'; const value = writable(null) //...