Hien Truong

Results 3 issues of Hien Truong

When creating a custom parser we need to check the `insertionMode` field against a value. Without the `InsertionMode` enum exported we have to use a magic number or redefine another...

TypeScript 4.7 has just been released which added support for Node16/NodeNext module ```json { "compilerOptions": { "module": "NodeNext", "moduleResolution": "NodeNext" } } ``` I think this update is required (I...

Similar to [`TypedUseSelectorHook`](https://react-redux.js.org/using-react-redux/usage-with-typescript#define-typed-hooks), this interface allows us to easily create a version of `createSelector` that is properly typed for our store's root state. Code example: ```ts import { createSelector, TypedCreateSelector...

TypeScript
needsRework