UNPKG

@kubiklabs/wasmkit

Version:

Wasmkit is a development environment to compile, deploy, test, run cosmwasm contracts on different networks.

6 lines (5 loc) 236 B
/** * This function is a typed version of `Object.keys`. Note that it's type * unsafe. You have to be sure that `o` has exactly the same keys as `T`. */ export declare const unsafeObjectKeys: <T>(o: T) => Extract<keyof T, string>[];