|
|
|
|
|
by gitgud
961 days ago
|
|
Nice work, love the use of reactivity via observables and pub/sub stores (some of my favourite abstractions) Some feedback from first glance is “type inference” could be better, which would help prevent a lot of foot-guns. Consider the example code here: this.count = this.observable(0);
Does this allow “count” to be inferred as a “number” type in the rest of the code? There might be a way to allow JS to easily infer the types, without requiring a build step… |
|