CosmWasm / ts-codegen

Convert your CosmWasm smart contracts into dev-friendly TypeScript classes so you can focus on shipping code.
https://cosmology.zone/products/ts-codegen
Apache License 2.0
116 stars 27 forks source link

Use Record<string, never> instead of {} #118

Open adairrr opened 1 year ago

adairrr commented 1 year ago

We should use Record<string, never> instead of {} because it is much more type-safe due to the fact that {} can be any object.