Igor
Igor
@tsumo I'd prefer to drop everything else, but to keep only Float32Array instead. There is just no point in using plain js arrays while working with WebGL. Typed arrays require...
such a factory has different issues, like the inability to tree-shake (I don't really care about this particular case because my assets are much bigger than JS bundle) but for...
Will this repo maintained if no one will help? Or you just throw off it? I want to try redux-orm in new project (thx to @markerikson ), but I can't...
@n1ru4l that's not a solution, because it doesn't allow us to use exhaustive type check === solution is not type-safe, and even less type-safe than creating the types manually and...
now open your second link and change the union to `type Weapon = Sword | Spellbook`. type check will pass, while it clearly should trigger an error. exhaustive type check...
In my particular case, exact enums would solve all the issues I have. The only problem is that it works only with strings, but I saw some cases where people...
I don't understand how the union of interfaces would help. I want to specify that some particular interface has a field with literal type as a value. It doesn't matter...
constant fields is a harder concept than literal types and it makes things more complicated. why do I need to create enum just to express that my field has some...
I can't agree that constants is a simpler context though. I speak from a frontend perspective (TS/Flow), where literal types are widely used (in all the codebases I worked with...
it was very painfull to fid way to pass request object to oauth2orize.exchange.password. it will be better to have this option by default, instead of writing workarounds such as ```...