twk
twk
We use a lot of branded types in our typescript code, which helps us catch more bugs at compile time: ``` type Brand = K & { __brand: T };...
I've got some 64 bit IDs in my system that I've defined in my schema as a `Schema.number`. However, when I dump the objects out that are being returned from...
We use brands extensively in our code to make it easy to distinguish between different types of integers. For example: ``` type Brand = K & { __brand: T };...
Is there an existing approach to supporting columns with names that don't match my objects? My database column names are in snake case, but my code is all camel case....