better-object-constructor

Modify some type definitions of Object in TypeScript.


Keywords
typescript, type, object
License
MIT
Install
npm install better-object-constructor@1.0.0

Documentation

BetterObjectConstructor

npm GitHub closed pull requests npm (tag) npm bundle size GitHub


How to use?

import type { BetterObjectConstructor } from 'better-object-constructor';

declare const Object: BetterObjectConstructor;

What will change?

For example:

const hoge: { a: string } = {
  a: 'fugafuga'
};

const hoge2 = Object.fromEntries(Object.entries(hoge));

Placed in this code, hoge and hoge2 should truly have the same type.

But let's look at it in the editor. (Below is a sample in VSCode…)

image

Oh! We lost the type!
But don't worry, if you add the code shown in the "How to use?" section...?


image

Welcome back, my lovely type definition.
...That's the kind of package.


Author

Follow @_AsPulse_


License

BetterObjectConstructor is licensed under MIT.
Please see LICENSE for more info.