PHCitizen
PHCitizen
on commit [90191fb](https://github.com/CashScript/cashscript/pull/192/commits/90191fbc8df943bf5c59b9e7c3312c2d34bdbb0b) i use ignore that error, because we know that it must be indexed and we are setting the right value if we don't use ignore, we need...
> ```ts > type GenerateBytes = > Result['length'] extends N > ? never > : `bytes${Result['length'] | 1}` | GenerateBytes; > > // TypeMap with dynamic fixed-length byte types >...
Regarding to other improvement listed, i think i encounter that before and that is my first solution/attempt. Then i came to place where "any" messed all up, so i try...
> I did another attempt to simplify the typings to increase maintainability & simplicity of the typescript code. I named the generics to make it more clear what is going...