Zoey

Results 51 comments of Zoey

@shanemadden I'm looking to continue this work; the last commits were more recent than the checklist's last update- are these still the accurate state of affairs? > Memory root -...

I would advise implementing human-readable versus compact formats as used in serde-rs/serde#1044 to allow human-readable while also using compact-encode during binary serialization.

Adjusted the title to `9.*` as `9.0.1` produces the above errors; 9.2.1 isn't even available on stackage somehow, but overriding with `compiler: ghc-9.2.1` in `stack.yaml` produces a lot of other...

Having spent the last half hour trying to figure out what all is involved- this, it looks like a switch to `cabal-install` instead of stack would simplify versioning greatly, since...

The changes I've pushed allow objects meeting the `{ x: number, y: number }` structural interface to be used in place of `RoomPosition` instances. I've tested these as working. This...

Added constructor object instance for RoomVisual as per @thaelina's suggestion and rebuilt.

Looks viable to me, considering any other member definitions could be easily made to fit the `[string]: any` hashing strategy. As long as you can show that an optional property...

It's something that could be done by an alternate idea of a complete lack of definition, allowing the user to add their own interface by a name we utilize, or...

It would likely be more helpful to store a type for global with an interface that promotes extensibility. Importantly, class types will cancel those from `.d.ts` files out under certain...

Yes, interfaces allow extension, especially static extension using the duet declaration with a constructor interface, so this is the preference set by the Typescript standard library.